Fix missing break in http_RecvMessage

There was a missing break in PARSE_INCOMPLETE_ENTITY due to commit
2eb3e069badd5c8676738c3ead37f9551fd8448e.
This commit is contained in:
Fabrice Fontaine 2012-03-14 18:43:14 +01:00
parent 7178f300bb
commit 05fb3f8026
2 changed files with 8 additions and 0 deletions

View File

@ -2,6 +2,13 @@
Version 1.6.16
*******************************************************************************
2012-03-14 Fabrice Fontaine <fabrice.fontaine(at)orange.com>
Fix missing break in http_RecvMessage
There was a missing break in PARSE_INCOMPLETE_ENTITY due to commit
2eb3e069badd5c8676738c3ead37f9551fd8448e.
2012-03-14 Yoichi NAKAYAMA <yoichi.nakayama(at)gmail.com>
Fix parse failure observed with tvdevice sample.

View File

@ -312,6 +312,7 @@ int http_RecvMessage(
case PARSE_INCOMPLETE_ENTITY:
/* read until close */
ok_on_close = TRUE;
break;
case PARSE_CONTINUE_1:
/* Web post request. */
line = __LINE__;