Merge pull request #3212 from janisozaur/server-list

Allocate enough memory for server entries, fix #3144
This commit is contained in:
Ted John 2016-04-01 23:47:51 +01:00
commit 12b39961af
1 changed files with 1 additions and 1 deletions

View File

@ -500,7 +500,7 @@ static char *freadstralloc(SDL_RWops *file)
if (SDL_RWread(file, &c, 1, 1) != 1) break;
if (c == 0) break;
if (length > capacity) {
if (length >= capacity) {
capacity *= 2;
buffer = realloc(buffer, capacity);
}