X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=php_http_cache_api.h;h=6efe1d834199cb23295f6175a112a9918cb068c0;hp=7ca8998dd1d5453aa4706e1ad7d3647ad4bfcff6;hb=4e2ecc5ed84649ce20fd1f11319626e0b1befa0a;hpb=32e91737086db53bb1fd9ed9f79d693c43ec459f diff --git a/php_http_cache_api.h b/php_http_cache_api.h index 7ca8998..6efe1d8 100644 --- a/php_http_cache_api.h +++ b/php_http_cache_api.h @@ -33,7 +33,7 @@ #define http_etag_digest(d, l) _http_etag_digest((d), (l)) static inline char *_http_etag_digest(const unsigned char *digest, int len) { - static const char hexdigits[16] = "0123456789abcdef"; + static const char hexdigits[17] = "0123456789abcdef"; int i; char *hex = emalloc(len * 2 + 1); char *ptr = hex; @@ -51,7 +51,7 @@ static inline char *_http_etag_digest(const unsigned char *digest, int len) static inline void *_http_etag_init(TSRMLS_D) { void *ctx = NULL; - char *mode = HTTP_G(etag).mode; + char *mode = HTTP_G->etag.mode; #ifdef HTTP_HAVE_EXT_HASH php_hash_ops *eho = NULL; @@ -77,7 +77,7 @@ 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, *mode = HTTP_G(etag).mode; + char *etag = NULL, *mode = HTTP_G->etag.mode; #ifdef HTTP_HAVE_EXT_HASH php_hash_ops *eho = NULL; @@ -105,7 +105,7 @@ 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; + char *mode = HTTP_G->etag.mode; #ifdef HTTP_HAVE_EXT_HASH php_hash_ops *eho = NULL; @@ -116,7 +116,7 @@ static inline void _http_etag_update(void *ctx, const char *data_ptr, size_t dat if (mode && ((!strcasecmp(mode, "crc32")) || (!strcasecmp(mode, "crc32b")))) { uint i, c = *((uint *) ctx); for (i = 0; i < data_len; ++i) { - c = CRC32(c, data_ptr[i]); + CRC32(c, data_ptr[i]); } *((uint *)ctx) = c; } else if (mode && (!strcasecmp(mode, "sha1"))) {