mirror of
https://github.com/gnif/LookingGlass.git
synced 2025-08-09 20:24:14 +00:00
[client] util: fix failure to check result of ftell
for error
This commit is contained in:
@@ -48,7 +48,6 @@ bool util_fileGetContents(const char * filename, char ** buffer, size_t * length
|
||||
return false;
|
||||
}
|
||||
|
||||
long fsize = ftell(fh);
|
||||
if (fseek(fh, 0, SEEK_SET) != 0)
|
||||
{
|
||||
DEBUG_ERROR("Failed to seek");
|
||||
@@ -56,6 +55,14 @@ bool util_fileGetContents(const char * filename, char ** buffer, size_t * length
|
||||
return false;
|
||||
}
|
||||
|
||||
long fsize = ftell(fh);
|
||||
if (fsize < 0)
|
||||
{
|
||||
DEBUG_ERROR("Failed to get the size");
|
||||
fclose(fh);
|
||||
return false;
|
||||
}
|
||||
|
||||
*buffer = malloc(fsize + 1);
|
||||
if (!*buffer)
|
||||
{
|
||||
|
Reference in New Issue
Block a user