Fix bug in SafeFOpen showing up in Cygwin. Errno only guaranteed to be set on failure.

This commit is contained in:
Andreas Schuh 2014-03-19 11:29:43 +00:00
parent b18fe77ecd
commit d8c6a552aa

View file

@ -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
}