Skip to content
This repository has been archived by the owner on Nov 18, 2022. It is now read-only.

Commit

Permalink
#454: fixed rare crash in stream end detection
Browse files Browse the repository at this point in the history
  • Loading branch information
hugbug committed Oct 16, 2017
1 parent 54c5a06 commit 35fca14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion daemon/nntp/Decoder.cpp
Expand Up @@ -272,7 +272,7 @@ char* Decoder::FindStreamEnd(char* buffer, int len)
{
return end + 1;
}
llen -= (int)(end - line);
llen -= (int)(end - line) + 1;
line = end + 1;
}

Expand Down

0 comments on commit 35fca14

Please sign in to comment.