Gisle Vanem fixed a single-byte overflow

This commit is contained in:
Daniel Stenberg 2003-08-08 17:18:21 +00:00
parent 9273096a8a
commit 12e78a082e
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ char *appendstring(char *string, /* original string */
{
int len = strlen(buffer);
if((len + *stringlen) > *stralloc) {
if((len + *stringlen) >= *stralloc) {
char *newptr= realloc(string, *stralloc*2);
if(newptr) {
string = newptr;