mirror of
https://github.com/gflags/gflags.git
synced 2025-04-05 05:25:04 +00:00
Fix bug in SafeFOpen showing up in Cygwin. Errno only guaranteed to be set on failure.
This commit is contained in:
parent
b18fe77ecd
commit
d8c6a552aa
1 changed files with 2 additions and 1 deletions
|
@ -364,7 +364,8 @@ inline int SafeFOpen(FILE **fp, const char* fname, const char *mode)
|
|||
#else
|
||||
assert(fp != NULL);
|
||||
*fp = fopen(fname, mode);
|
||||
return errno;
|
||||
// errno only guaranteed to be set on failure
|
||||
return ((*fp == NULL) ? errno : 0);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue