view src/os/win32/ngx_dlopen.c @ 6400:b4c28876d2c3

HTTP/2: use local pointer instead of r->connection. No functional changes.
author Valentin Bartenev <vbart@nginx.com>
date Tue, 16 Feb 2016 17:49:14 +0300
parents 7142b04337d6
children
line wrap: on
line source


/*
 * Copyright (C) Maxim Dounin
 * Copyright (C) Nginx, Inc.
 */


#include <ngx_config.h>
#include <ngx_core.h>


char *
ngx_dlerror(void)
{
    u_char         *p;
    static u_char   errstr[NGX_MAX_ERROR_STR];

    p = ngx_strerror(ngx_errno, errstr, NGX_MAX_ERROR_STR);
    *p = '\0';

    return (char *) errstr;
}