Fix missing break in http_RecvMessage
There was a missing break in PARSE_INCOMPLETE_ENTITY due to commit 2eb3e069badd5c8676738c3ead37f9551fd8448e.
This commit is contained in:
parent
7178f300bb
commit
05fb3f8026
@ -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.
|
||||
|
@ -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__;
|
||||
|
Loading…
x
Reference in New Issue
Block a user