X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=php_http_cache_api.h;h=c9344837178bc26266925c7570fe349155aff0e0;hp=03ea1134be656f6412583633e544c9eaaa9069c5;hb=dc7248a073febcade23e6a1a296ab1b2bb752298;hpb=0acbfc76b5a3e4122a6d06d64bd834a810806656 diff --git a/php_http_cache_api.h b/php_http_cache_api.h index 03ea113..c934483 100644 --- a/php_http_cache_api.h +++ b/php_http_cache_api.h @@ -79,11 +79,10 @@ static inline void *_http_etag_init(TSRMLS_D) static inline char *_http_etag_finish(void *ctx TSRMLS_DC) { unsigned char digest[128] = {0}; - char *etag = NULL; + char *etag = NULL, *mode = HTTP_G(etag).mode; #ifdef HTTP_HAVE_EXT_HASH php_hash_ops *eho = NULL; - char *mode = HTTP_G(etag).mode; if (mode && (eho = php_hash_fetch_ops(mode, strlen(mode)))) { eho->hash_final(digest, ctx); @@ -108,9 +107,9 @@ static inline char *_http_etag_finish(void *ctx TSRMLS_DC) #define http_etag_update(c, d, l) _http_etag_update((c), (d), (l) TSRMLS_CC) static inline void _http_etag_update(void *ctx, const char *data_ptr, size_t data_len TSRMLS_DC) { + char *mode = HTTP_G(etag).mode; #ifdef HTTP_HAVE_EXT_HASH php_hash_ops *eho = NULL; - char *mode = HTTP_G(etag).mode; if (mode && (eho = php_hash_fetch_ops(mode, strlen(mode)))) { eho->hash_update(ctx, (const unsigned char *) data_ptr, data_len);