leeriorio
leeriorio
In results of static analyze of nginx sources I founded potential null dereference https://github.com/nginx/nginx/blob/00637cce366f17b78fe1ed5c1ef0e534143045f6/src/os/unix/ngx_time.c#L48-L50 `localtime()` function potentially can return NULL value, which will dereference in `strftime()`. How about to add...
In result of static analyse of nginx sources (including this module) code with Svace static analyzer I found error of cathegory "NULL_AFTER_DEREF" (situations where first, a pointer is dereferenced, and...
In result of static analyse of nginx sources (including headers-more-nginx-module) with Svace static analyzer I found minor error of cathegory "REDUNDANT_COMPARISON.ALWAYS_FALSE" in ngx_http_headers_more_filter_module.c. https://github.com/openresty/headers-more-nginx-module/blob/f8f80997f19a41dc4181987544b9f3570cc3d6da/src/ngx_http_headers_more_filter_module.c#L234-L239 calling function `ngx_http_headers_more_filter_init` returns `NGX_OK` code...