summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Esser <sesser@php.net>2004-05-25 22:13:10 +0000
committerStefan Esser <sesser@php.net>2004-05-25 22:13:10 +0000
commit47b6b1e28a17c0ef7d2b0ef8d2a7ebc75cb2acf9 (patch)
tree2a71231a5fc9574769808f34ff0a6219e7d475ac
parenta063cc29561ba9d0d65b7fd8565c4b56272f7ae6 (diff)
downloadphp-git-47b6b1e28a17c0ef7d2b0ef8d2a7ebc75cb2acf9.tar.gz
MFH
-rw-r--r--main/SAPI.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/SAPI.c b/main/SAPI.c
index aff85a1e0c..feec2c325b 100644
--- a/main/SAPI.c
+++ b/main/SAPI.c
@@ -201,7 +201,7 @@ SAPI_API SAPI_POST_READER_FUNC(sapi_read_standard_form_data)
SG(read_post_bytes) += read_bytes;
if (SG(read_post_bytes) > SG(post_max_size)) {
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Actual POST length does not match Content-Length, and exceeds %ld bytes", SG(post_max_size));
- return;
+ break;
}
if (read_bytes < SAPI_POST_BLOCK_SIZE) {
break;