diff --git a/src/util.h b/src/util.h index 9035890..339705e 100644 --- a/src/util.h +++ b/src/util.h @@ -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 }