mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-22 05:27:20 +00:00
[client] util: fix failure to dereference pointer
This commit is contained in:
parent
cce12508cc
commit
852825a97e
@ -73,7 +73,7 @@ bool util_fileGetContents(const char * filename, char ** buffer, size_t * length
|
|||||||
}
|
}
|
||||||
|
|
||||||
fclose(fh);
|
fclose(fh);
|
||||||
buffer[fsize] = 0;
|
*buffer[fsize] = 0;
|
||||||
*length = fsize;
|
*length = fsize;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user