mirror of
https://github.com/facebook/zstd.git
synced 2025-11-08 00:22:15 -05:00
Merge pull request #2067 from bimbashrestha/res-leak
[bug] adding fclose before return
This commit is contained in:
commit
009a92f749
@ -100,11 +100,14 @@ static char* readFile(const char* filename, size_t* size) {
|
||||
buf = malloc(*size);
|
||||
if (buf == NULL) {
|
||||
fprintf(stderr, "malloc failed\n");
|
||||
fclose(f);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
bytes_read = fread(buf, 1, *size, f);
|
||||
if (bytes_read != *size) {
|
||||
fprintf(stderr, "failed to read whole file\n");
|
||||
fclose(f);
|
||||
free(buf);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user