From: Fabian Keil Date: Sun, 27 Dec 2015 12:47:17 +0000 (+0000) Subject: host_matches(): Assert that the host pointer isn't NULL X-Git-Tag: v_3_0_24~66 X-Git-Url: http://www.privoxy.org/gitweb/?p=privoxy.git;a=commitdiff_plain;h=a9c4e6521ba7e7950120b6cc0f2d67ded9bb2af7 host_matches(): Assert that the host pointer isn't NULL --- diff --git a/urlmatch.c b/urlmatch.c index ed7399be..de0b9bba 100644 --- a/urlmatch.c +++ b/urlmatch.c @@ -1,4 +1,4 @@ -const char urlmatch_rcs[] = "$Id: urlmatch.c,v 1.84 2014/06/20 09:47:10 fabiankeil Exp $"; +const char urlmatch_rcs[] = "$Id: urlmatch.c,v 1.85 2014/07/25 11:56:26 fabiankeil Exp $"; /********************************************************************* * * File : $Source: /cvsroot/ijbswa/current/urlmatch.c,v $ @@ -1281,6 +1281,7 @@ static int port_matches(const int port, const char *port_list) static int host_matches(const struct http_request *http, const struct pattern_spec *pattern) { + assert(http->host != NULL); #ifdef FEATURE_EXTENDED_HOST_PATTERNS return ((NULL == pattern->pattern.url_spec.host_regex) || (0 == regexec(pattern->pattern.url_spec.host_regex, http->host, 0, NULL, 0)));