mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-04-05 09:20:52 +00:00
Fix getline
This commit is contained in:
parent
a4198fc27e
commit
af2324e922
1 changed files with 2 additions and 1 deletions
3
util.c
3
util.c
|
@ -450,8 +450,9 @@ int util_getline(char **lineptr, size_t *n, FILE *stream) {
|
|||
int c = getc(stream);
|
||||
|
||||
if (chr < 2) {
|
||||
*n += (*n > 16) ? *n : 64;
|
||||
chr = *n + *lineptr - pos;
|
||||
if (!(*lineptr = (char*)mem_r(*lineptr,(*n+=(*n>16)?*n:64))))
|
||||
if (!(*lineptr = (char*)mem_r(*lineptr,*n)))
|
||||
return -1;
|
||||
pos = *n - chr + *lineptr;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue