view src/os/unix/ngx_dlopen.c @ 8409:26cb2f3259b1 quic

HTTP/3: reallocate strings inserted into the dynamic table. They should always be allocated from the main QUIC connection pool.
author Roman Arutyunyan <arut@nginx.com>
date Thu, 14 May 2020 16:02:32 +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>


#if (NGX_HAVE_DLOPEN)

char *
ngx_dlerror(void)
{
    char  *err;

    err = (char *) dlerror();

    if (err == NULL) {
        return "";
    }

    return err;
}

#endif