Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nginx/nginx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxim Dounin <mdounin@mdounin.ru>2013-05-06 14:03:24 +0400
committerMaxim Dounin <mdounin@mdounin.ru>2013-05-06 14:03:24 +0400
commit818807d71e3df7ea84ce016a616886f8ae79505b (patch)
treeca9f67e1a849db91fb56f778629e578a0be57ea7
parent9014efdadfd9ba80a5f3829364551fcdf44d1213 (diff)
Fixed chunk size parsing.
-rw-r--r--src/http/ngx_http_parse.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/http/ngx_http_parse.c b/src/http/ngx_http_parse.c
index 34b3b85d0..3c168aaf2 100644
--- a/src/http/ngx_http_parse.c
+++ b/src/http/ngx_http_parse.c
@@ -2209,6 +2209,10 @@ data:
}
+ if (ctx->size < 0 || ctx->length < 0) {
+ goto invalid;
+ }
+
return rc;
done: