X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=php_http_misc.c;h=e4411e0aaf39efb2e654e46913d8287ec0beb001;hp=db588ea6be2697b50971db70f94284c00ad7273d;hb=14aec371d6123fbedbe13ca73b6a6d5768c635cb;hpb=8d05291f42b3b42159b3fe91492aa4862f3d4405 diff --git a/php_http_misc.c b/php_http_misc.c index db588ea..e4411e0 100644 --- a/php_http_misc.c +++ b/php_http_misc.c @@ -10,11 +10,10 @@ +--------------------------------------------------------------------+ */ -#include "php_http.h" +#include "php_http_api.h" #include -#include -#include +#include /* SLEEP */ @@ -37,7 +36,7 @@ PHP_HTTP_API void php_http_sleep(double s) #else struct timeval timeout; - timeout.tv.sec = (time_t) s; + timeout.tv_sec = (time_t) s; timeout.tv_usec = PHP_HTTP_USEC(s) % PHP_HTTP_MCROSEC; select(0, NULL, NULL, NULL, &timeout); @@ -51,6 +50,10 @@ int php_http_match(const char *haystack_str, const char *needle_str, int flags) { int result = 0; + if (!haystack_str || !needle_str) { + return result; + } + if (flags & PHP_HTTP_MATCH_FULL) { if (flags & PHP_HTTP_MATCH_CASE) { result = !strcmp(haystack_str, needle_str);