merge from gcc
This commit is contained in:
parent
f562800dc4
commit
8975bb3072
2 changed files with 9 additions and 1 deletions
|
@ -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>
|
2008-07-31 Denys Vlasenko <dvlasenk@redhat.com>
|
||||||
|
|
||||||
* mkstemps.c (mkstemps): If open failed with errno other than
|
* mkstemps.c (mkstemps): If open failed with errno other than
|
||||||
|
|
|
@ -127,7 +127,11 @@ mkstemps (char *pattern, int suffix_len)
|
||||||
if (fd >= 0)
|
if (fd >= 0)
|
||||||
/* The file does not exist. */
|
/* The file does not exist. */
|
||||||
return fd;
|
return fd;
|
||||||
if (errno != EEXIST)
|
if (errno != EEXIST
|
||||||
|
#ifdef EISDIR
|
||||||
|
&& errno != EISDIR
|
||||||
|
#endif
|
||||||
|
)
|
||||||
/* Fatal error (EPERM, ENOSPC etc). Doesn't make sense to loop. */
|
/* Fatal error (EPERM, ENOSPC etc). Doesn't make sense to loop. */
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue