# HG changeset patch # User Valentin Bartenev # Date 1379342962 -14400 # Node ID dd9cb4edf4999e8aae12c0c338c88f4755234cfc # Parent 7d877019643683b5ee86a44fd9cf62c52ba43071 Removed surplus initializations from ngx_conf_set_path_slot(). An instance of ngx_path_t is already zeroed by ngx_pcalloc(). diff -r 7d8770196436 -r dd9cb4edf499 src/core/ngx_file.c --- a/src/core/ngx_file.c Mon Sep 16 18:49:10 2013 +0400 +++ b/src/core/ngx_file.c Mon Sep 16 18:49:22 2013 +0400 @@ -359,9 +359,6 @@ return NULL; } - path->len = 0; - path->manager = NULL; - path->loader = NULL; path->conf_file = cf->conf_file->file.name.data; path->line = cf->conf_file->line;