Skip to content

Commit

Permalink
fixed srv pool log
Browse files Browse the repository at this point in the history
  • Loading branch information
arut committed Jun 13, 2012
1 parent 266e206 commit 696cfda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ngx_rtmp_core_module.c
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ ngx_rtmp_core_merge_srv_conf(ngx_conf_t *cf, void *parent, void *child)
ngx_conf_merge_value(conf->publish_time_fix, prev->publish_time_fix, 1);

if (prev->pool == NULL) {
prev->pool = ngx_create_pool(8192, cf->log);
prev->pool = ngx_create_pool(4096, &cf->cycle->new_log);
if (prev->pool == NULL) {
return NGX_CONF_ERROR;
}
Expand Down

0 comments on commit 696cfda

Please sign in to comment.