# HG changeset patch # User Igor Sysoev # Date 1319461141 0 # Node ID 2dd6c7cb211a04cbe5b8c8c27e0bdd52a9ab80d9 # Parent 3203ddb78279581118697677855252d02d50534f FreeBSD's MALLOC_OPTIONS must be set before any malloc() call. The bug has been introduced in r3799. diff --git a/src/core/nginx.c b/src/core/nginx.c --- a/src/core/nginx.c +++ b/src/core/nginx.c @@ -203,6 +203,10 @@ main(int argc, char *const *argv) ngx_cycle_t *cycle, init_cycle; ngx_core_conf_t *ccf; +#if (NGX_FREEBSD) + ngx_debug_init(); +#endif + if (ngx_strerror_init() != NGX_OK) { return 1; } @@ -260,10 +264,6 @@ main(int argc, char *const *argv) } } -#if (NGX_FREEBSD) - ngx_debug_init(); -#endif - /* TODO */ ngx_max_sockets = -1; ngx_time_init();