summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Esser2014-02-18 11:33:01 +0100
committerStefan Esser2014-02-18 11:33:01 +0100
commit1a470758547574bdd80f29e26f4b7a47f4108afc (patch)
treecbe65991013d24d28d55e6f957ccecf77cbf1376
parent4feb1476377e8bd355c26a0a1043b89d33015027 (diff)
Without this in PHP < 5.4 we do not get the variable skip summary on POST uploads.
-rw-r--r--rfc1867.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/rfc1867.c b/rfc1867.c
index ec7bf25..e19c677 100644
--- a/rfc1867.c
+++ b/rfc1867.c
@@ -940,6 +940,7 @@ SAPI_POST_HANDLER_FUNC(suhosin_rfc1867_post_handler)
940 } 940 }
941SDEBUG("calling inputfilter"); 941SDEBUG("calling inputfilter");
942 if (suhosin_input_filter(PARSE_POST, param, &value, value_len, &new_val_len TSRMLS_CC) == 0) { 942 if (suhosin_input_filter(PARSE_POST, param, &value, value_len, &new_val_len TSRMLS_CC) == 0) {
943 SUHOSIN_G(abort_request)=1;
943 efree(param); 944 efree(param);
944 efree(value); 945 efree(value);
945 continue; 946 continue;