summaryrefslogtreecommitdiff
path: root/suhosin.c
diff options
context:
space:
mode:
authorBen Fuhrmannek2014-11-22 16:13:15 +0100
committerBen Fuhrmannek2014-11-22 16:13:15 +0100
commita69c64b2bc5756b14605ad39ffad69d09c0d578c (patch)
tree6bc2008c9e73e09e53c3ac5688ef9a9d032d93bb /suhosin.c
parentdf62872ad72b13c24637f33d2452269a48c88f8d (diff)
TSRM related speed optimization - thanks to patch from NewEraCracker
Diffstat (limited to 'suhosin.c')
-rw-r--r--suhosin.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/suhosin.c b/suhosin.c
index 181f702..3071bc1 100644
--- a/suhosin.c
+++ b/suhosin.c
@@ -1046,9 +1046,9 @@ PHP_MINIT_FUNCTION(suhosin)
1046 } 1046 }
1047 1047
1048 /* now hook a bunch of stuff */ 1048 /* now hook a bunch of stuff */
1049 suhosin_hook_memory_limit(); 1049 suhosin_hook_memory_limit(TSRMLS_C);
1050 suhosin_hook_sha256(); 1050 suhosin_hook_sha256(TSRMLS_C);
1051 suhosin_hook_ex_imp(); 1051 suhosin_hook_ex_imp(TSRMLS_C);
1052 1052
1053#if PHP_VERSION_ID < 50500 1053#if PHP_VERSION_ID < 50500
1054 /* register the logo for phpinfo */ 1054 /* register the logo for phpinfo */