Fix missing break in http_RecvMessage

There was a missing break in PARSE_INCOMPLETE_ENTITY due to commit
2eb3e069badd5c8676738c3ead37f9551fd8448e.
(cherry picked from commit 05fb3f80262faef3de496b9f1629274dc883eab5)
This commit is contained in:
Fabrice Fontaine 2012-03-14 18:43:14 +01:00 committed by Marcelo Roberto Jimenez
parent cca16cbead
commit 6bd5086a88
2 changed files with 8 additions and 0 deletions

View File

@ -318,6 +318,13 @@ Version 1.8.0
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

@ -372,6 +372,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__;