mirror of
https://github.com/gnif/LookingGlass.git
synced 2025-01-03 11:17:10 +00:00
[client] util: fix invalid pointer arithmatic
This commit is contained in:
parent
cf51503a54
commit
a28deae569
1 changed files with 1 additions and 1 deletions
|
@ -80,7 +80,7 @@ bool util_fileGetContents(const char * filename, char ** buffer, size_t * length
|
|||
}
|
||||
|
||||
fclose(fh);
|
||||
*buffer[fsize] = 0;
|
||||
(*buffer)[fsize] = 0;
|
||||
*length = fsize;
|
||||
return true;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue