mirror of
https://github.com/gflags/gflags.git
synced 2025-04-05 05:25:04 +00:00
Fix up use of SafeFOpen.
This commit is contained in:
parent
6b7be9a00a
commit
e31f179ae0
1 changed files with 1 additions and 1 deletions
|
@ -997,7 +997,7 @@ static string ReadFileIntoString(const char* filename) {
|
|||
char buffer[kBufSize];
|
||||
string s;
|
||||
FILE* fp;
|
||||
if ((errno = SafeFOpen(&fp, filename, "r") != 0)) PFATAL(filename);
|
||||
if ((errno = SafeFOpen(&fp, filename, "r")) != 0) PFATAL(filename);
|
||||
size_t n;
|
||||
while ( (n=fread(buffer, 1, kBufSize, fp)) > 0 ) {
|
||||
if (ferror(fp)) PFATAL(filename);
|
||||
|
|
Loading…
Add table
Reference in a new issue