summaryrefslogtreecommitdiff
path: root/php_suhosin.h
diff options
context:
space:
mode:
authorStefan Esser2014-06-09 15:59:35 +0200
committerStefan Esser2014-06-09 15:59:35 +0200
commit9be1238da0b3f87fe9781a2ca91202061b89c0a1 (patch)
tree8348fa3c245565829237c17dd1e39905d5a59b0b /php_suhosin.h
parentf073721856bbac1d427f87520a9cfb6c3fa08c5d (diff)
Fixed problem with SessionHandler() class and endless recursion
Diffstat (limited to 'php_suhosin.h')
-rw-r--r--php_suhosin.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/php_suhosin.h b/php_suhosin.h
index 152fe43..3454f5d 100644
--- a/php_suhosin.h
+++ b/php_suhosin.h
@@ -192,6 +192,7 @@ ZEND_BEGIN_MODULE_GLOBALS(suhosin)
192 192
193/* session */ 193/* session */
194 void *s_module; 194 void *s_module;
195 void *s_original_mod;
195 int (*old_s_read)(void **mod_data, const char *key, char **val, int *vallen TSRMLS_DC); 196 int (*old_s_read)(void **mod_data, const char *key, char **val, int *vallen TSRMLS_DC);
196 int (*old_s_write)(void **mod_data, const char *key, const char *val, const int vallen TSRMLS_DC); 197 int (*old_s_write)(void **mod_data, const char *key, const char *val, const int vallen TSRMLS_DC);
197 int (*old_s_destroy)(void **mod_data, const char *key TSRMLS_DC); 198 int (*old_s_destroy)(void **mod_data, const char *key TSRMLS_DC);