merge from gcc
This commit is contained in:
parent
f562800dc4
commit
8975bb3072
@ -1,3 +1,7 @@
|
||||
2008-07-31 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
* mkstemps.c (mkstemps): Keep looping even for EISDIR.
|
||||
|
||||
2008-07-31 Denys Vlasenko <dvlasenk@redhat.com>
|
||||
|
||||
* mkstemps.c (mkstemps): If open failed with errno other than
|
||||
|
@ -127,7 +127,11 @@ mkstemps (char *pattern, int suffix_len)
|
||||
if (fd >= 0)
|
||||
/* The file does not exist. */
|
||||
return fd;
|
||||
if (errno != EEXIST)
|
||||
if (errno != EEXIST
|
||||
#ifdef EISDIR
|
||||
&& errno != EISDIR
|
||||
#endif
|
||||
)
|
||||
/* Fatal error (EPERM, ENOSPC etc). Doesn't make sense to loop. */
|
||||
break;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user