Skip to content
Snippets Groups Projects
Commit 5799d65f authored by Greg Kaiser's avatar Greg Kaiser
Browse files

tools/bit: Avoid leak in error condition

In the unlikely event of fread() failing, we want to avoid leaking
our buffer or the file handle.

Test: Treehugger
Change-Id: I1866d00c74ad38af4559d747fee696a60464c9f0
parent fe3877f1
No related branches found
No related tags found
No related merge requests found
......@@ -241,6 +241,8 @@ read_file(const string& filename)
char* buf = (char*)malloc(size);
if ((size_t) size != fread(buf, 1, size, file)) {
free(buf);
fclose(file);
return string();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment