X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=php_http_misc.c;h=f52c9d6348b3b7839cf90105e1805baaba01adcf;hb=2aa318b3eb1d885b29bf172290f35a3096e339a7;hp=c52f83f91fddc6f840e3b52964830a9a55294a36;hpb=c5c580f24e24e8032a0554a2e39e38c496144bc2;p=m6w6%2Fext-http diff --git a/php_http_misc.c b/php_http_misc.c index c52f83f..f52c9d6 100644 --- a/php_http_misc.c +++ b/php_http_misc.c @@ -51,7 +51,7 @@ PHP_HTTP_API void php_http_sleep(double s) int php_http_match(const char *haystack_str, const char *needle_str, int flags) { - int result; + int result = 0; if (flags & PHP_HTTP_MATCH_FULL) { if (flags & PHP_HTTP_MATCH_CASE) { @@ -210,12 +210,10 @@ void php_http_error(long type TSRMLS_DC, long code, const char *format, ...) switch (scope_error_handling(type TSRMLS_CC)) { case EH_THROW: { char *message; - zend_class_entry *ce; + zend_class_entry *ce = php_http_exception_class_entry; if (0&& EG(exception_class) && instanceof_function(EG(exception_class), php_http_exception_class_entry)) { ce = EG(exception_class); - } else { - ce = php_http_exception_get_for_code(code); } vspprintf(&message, 0, format, args);