mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-31 08:41:03 +00:00
Fix premature end of reading a post.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@20195 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
f3feb86790
commit
560e7abd15
2 changed files with 5 additions and 4 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2004-10-04 Richard Frith-Macdonald <rfm@gnu.org>
|
||||||
|
|
||||||
|
* Source/GSHTTPURLHandle.m: Fix premature end of read where no
|
||||||
|
content length is specified.
|
||||||
|
|
||||||
2004-10-03 Richard Frith-Macdonald <rfm@gnu.org>
|
2004-10-03 Richard Frith-Macdonald <rfm@gnu.org>
|
||||||
|
|
||||||
* Source/Additions/GSXML.m: Add methods for converting XML escape
|
* Source/Additions/GSXML.m: Add methods for converting XML escape
|
||||||
|
|
|
@ -442,10 +442,6 @@ static void debugWrite(GSHTTPURLHandle *handle, NSData *data)
|
||||||
{
|
{
|
||||||
complete = NO; // Read chunked body data
|
complete = NO; // Read chunked body data
|
||||||
}
|
}
|
||||||
else if (ver >= 1.0 && [len intValue] == 0)
|
|
||||||
{
|
|
||||||
complete = YES; // No content
|
|
||||||
}
|
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
complete = NO; // No
|
complete = NO; // No
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue