MFB_4_3: cvs diff -r1.84.2.5 -r1.84.2.6 php_session.h

This commit is contained in:
foobar 2005-02-13 07:55:27 +00:00
parent 1f98a966c5
commit 7281cd8082

View File

@ -214,8 +214,7 @@ PHPAPI void php_session_start(TSRMLS_D);
ulong num_key; \
zval **struc;
#define PS_ENCODE_LOOP(code) \
{ \
#define PS_ENCODE_LOOP(code) do { \
HashTable *_ht = Z_ARRVAL_P(PS(http_session_vars)); \
\
for (zend_hash_internal_pointer_reset(_ht); \
@ -226,7 +225,7 @@ PHPAPI void php_session_start(TSRMLS_D);
code; \
} \
} \
}
} while(0)
PHPAPI ZEND_EXTERN_MODULE_GLOBALS(ps)