From 1d7e942df4d55521b348a22e3f6b4f70e7f3fd25 Mon Sep 17 00:00:00 2001 From: Michael Wallner Date: Tue, 14 Jun 2005 10:37:33 +0000 Subject: [PATCH] - needs to be a pointer --- php_http.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/php_http.h b/php_http.h index e648457..dc67383 100644 --- a/php_http.h +++ b/php_http.h @@ -80,7 +80,7 @@ ZEND_END_MODULE_GLOBALS(http) # define HTTP_GLOBALS ((zend_http_globals *) (*((void ***) tsrm_ls))[TSRM_UNSHUFFLE_RSRC_ID(http_globals_id)]) #else # define HTTP_G(v) (http_globals.v) -# define HTTP_GLOBALS http_globals +# define HTTP_GLOBALS (&http_globals) #endif #define getGlobals(G) zend_http_globals *G = HTTP_GLOBALS; -- 2.30.2