diff --git a/ChangeLog b/ChangeLog index 21171f9..a918e5e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,13 @@ Version 1.6.16 ******************************************************************************* +2012-03-14 Fabrice Fontaine + + Fix missing break in http_RecvMessage + + There was a missing break in PARSE_INCOMPLETE_ENTITY due to commit + 2eb3e069badd5c8676738c3ead37f9551fd8448e. + 2012-03-14 Yoichi NAKAYAMA Fix parse failure observed with tvdevice sample. diff --git a/upnp/src/genlib/net/http/httpreadwrite.c b/upnp/src/genlib/net/http/httpreadwrite.c index 834b352..536dee8 100644 --- a/upnp/src/genlib/net/http/httpreadwrite.c +++ b/upnp/src/genlib/net/http/httpreadwrite.c @@ -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__;