Browse Source

handle -1 length reads properly

erdgeist-fix-tasklists
Dirk Engling 9 months ago
parent
commit
4baec2592c
  1. 3
      opentracker.c

3
opentracker.c

@ -177,6 +177,9 @@ static void handle_read( const int64 sock, struct ot_workstruct *ws ) { @@ -177,6 +177,9 @@ static void handle_read( const int64 sock, struct ot_workstruct *ws ) {
return;
}
if( byte_count == -1)
return;
/* If we get the whole request in one packet, handle it without copying */
if( !array_start( &cookie->request ) ) {
if( ( ws->header_size = header_complete( ws->inbuf, byte_count ) ) ) {

Loading…
Cancel
Save