X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;ds=sidebyside;f=http.c;h=03ac2df105532dab26b8e7f05516abe09f342427;hb=7740fcbe676722c38b8c2f49930285cc0127d054;hp=b46ba9ef4f2f3deb98756e893fa113f4217a23b6;hpb=85e7a5ad7604cdb1096bacfc3db06812e87c0c60;p=m6w6%2Fext-http diff --git a/http.c b/http.c index b46ba9e..03ac2df 100644 --- a/http.c +++ b/http.c @@ -368,9 +368,10 @@ zend_module_entry http_module_entry = { }; /* }}} */ -static void free_to_free(void **s) + +static void free_to_free(void *s) { - efree(*s); + efree(*(char **)s); } /* {{{ php_http_init_globals(zend_http_globals *) */