MW does not always set errno on failing fopen()

This commit is contained in:
Jack Jansen 1995-04-23 22:12:47 +00:00
parent 1ff2f218ca
commit e08dea19c2
1 changed files with 11 additions and 0 deletions

View File

@ -32,6 +32,10 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#ifdef THINK_C
#define HAVE_FOPENRF
#endif
#ifdef __MWERKS__
/* Mwerks fopen() doesn't always set errno */
#define NO_FOPEN_ERRNO
#endif
#define BUF(v) GETSTRINGVALUE((stringobject *)v)
@ -111,6 +115,13 @@ newfileobject(name, mode)
END_SAVE
}
if (f->f_fp == NULL) {
#ifdef NO_FOPEN_ERRNO
if ( errno == 0 ) {
err_setstr(IOError, "Cannot open file");
DECREF(f);
return NULL;
}
#endif
err_errno(IOError);
DECREF(f);
return NULL;