mirror of
https://github.com/lxsang/ant-http
synced 2024-12-26 00:38:21 +01:00
fix length bug
This commit is contained in:
parent
903fdfa483
commit
afc0b31184
@ -508,10 +508,12 @@ int __f(void* client, const char* file)
|
|||||||
LOG("Cannot read : %s\n", file);
|
LOG("Cannot read : %s\n", file);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
while(fgets(buf, sizeof(buf), ptr) != NULL)
|
memset(buf,0, sizeof(buf));
|
||||||
|
while(fgets(buf, sizeof(buf) - 1, ptr) != NULL)
|
||||||
{
|
{
|
||||||
nbytes = antd_send(client, buf, strlen(buf));
|
nbytes = antd_send(client, buf, strlen(buf));
|
||||||
if(nbytes == -1) return 0;
|
if(nbytes == -1) return 0;
|
||||||
|
memset(buf,0, sizeof(buf));
|
||||||
//LOG("READ : %s\n", buf);
|
//LOG("READ : %s\n", buf);
|
||||||
//fgets(buf, sizeof(buf), ptr);
|
//fgets(buf, sizeof(buf), ptr);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user