1
0
mirror of https://frontier.innolan.net/rainlance/c-ares.git synced 2026-03-18 02:15:48 +00:00

Fix PellesC warning.

This commit is contained in:
Gisle Vanem
2005-12-20 20:58:51 +00:00
parent ac9950c3eb
commit e2bdd6b5a6

View File

@ -50,7 +50,7 @@ int ares__read_line(FILE *fp, char **buf, int *bufsize)
if ((*buf)[len - 1] == '\n')
{
(*buf)[len - 1] = 0;
return ARES_SUCCESS;
break;
}
offset = len;
@ -61,4 +61,5 @@ int ares__read_line(FILE *fp, char **buf, int *bufsize)
*buf = newbuf;
*bufsize *= 2;
}
return ARES_SUCCESS;
}