httpd
httpd copied to clipboard
Fix possible NULL pointer dereference casued by apreq_param_make()
The function apreq_param_make() will return NULL on failure. However NULL check are forgetten before derenference, which could lead to NULL pointer dereference.
Adding NULL check to all use of apreq_param_make().