X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=http_functions.c;h=9b42801830c6ec197a14cf45836da807a747ff6b;hb=650dad8564d53bd3fb6c9867fa81e0abf17f6f7b;hp=550ce8ff7934169059a07e28a842c63f4a094525;hpb=001564eec4dca90f93d7c474fecd15614387b48f;p=m6w6%2Fext-http diff --git a/http_functions.c b/http_functions.c index 550ce8f..9b42801 100644 --- a/http_functions.c +++ b/http_functions.c @@ -77,7 +77,7 @@ PHP_FUNCTION(http_date) *
  *	- HTTP_URL_REPLACE:        (default) set parts of the second url will replace the parts in the first
  *	- HTTP_URL_JOIN_PATH:      the path of the second url will be merged into the one of the first
- *	- HTTP_URL_JOIN_QUERY:     the two querystrings will be merged naivly; no replacements are done
+ *	- HTTP_URL_JOIN_QUERY:     the two querystrings will be merged recursively
  *	- HTTP_URL_STRIP_USER:     the user part will not appear in the result
  *	- HTTP_URL_STRIP_PASS:     the password part will not appear in the result
  *	- HTTP_URL_STRIP_AUTH:     neither the user nor the password part will appear in the result
@@ -180,7 +180,9 @@ PHP_FUNCTION(http_build_url)
 	if (new_url) {
 		php_url_free(new_url);
 	}
-	php_url_free(old_url);
+	if (old_url) {
+		php_url_free(old_url);
+	}
 	
 	RETURN_STRINGL(url_str, url_len, 0);
 }