X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=php_http_negotiate.h;h=f7405b54e5111a4f66f4fffe743bd3f436384da7;hp=3a12ab7cd1992a01d48b409a71e32770dfd77ffa;hb=refs%2Fheads%2Fv2.4.x;hpb=eaa046dc3e6496e523a17c3b786ef27067b9795c diff --git a/php_http_negotiate.h b/php_http_negotiate.h index 3a12ab7..f7405b5 100644 --- a/php_http_negotiate.h +++ b/php_http_negotiate.h @@ -24,7 +24,7 @@ static inline HashTable *php_http_negotiate_language(HashTable *supported, php_h if (value) { result = php_http_negotiate(value, length, supported, "-", 1 TSRMLS_CC); } - STR_FREE(value); + PTR_FREE(value); return result; } @@ -38,7 +38,7 @@ static inline HashTable *php_http_negotiate_encoding(HashTable *supported, php_h if (value) { result = php_http_negotiate(value, length, supported, NULL, 0 TSRMLS_CC); } - STR_FREE(value); + PTR_FREE(value); return result; } @@ -52,7 +52,7 @@ static inline HashTable *php_http_negotiate_charset(HashTable *supported, php_ht if (value) { result = php_http_negotiate(value, length, supported, NULL, 0 TSRMLS_CC); } - STR_FREE(value); + PTR_FREE(value); return result; } @@ -66,7 +66,7 @@ static inline HashTable *php_http_negotiate_content_type(HashTable *supported, p if (value) { result = php_http_negotiate(value, length, supported, "/", 1 TSRMLS_CC); } - STR_FREE(value); + PTR_FREE(value); return result; }