mirror of
https://github.com/curl/curl.git
synced 2026-07-24 22:47:16 +03:00
Gisle Vanem fixed a single-byte overflow
This commit is contained in:
parent
9273096a8a
commit
12e78a082e
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue