mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-24 11:41:58 +00:00
lib9: revert unintended changes to opentemp
This commit is contained in:
parent
0a40aeedbf
commit
e960e21be1
1 changed files with 5 additions and 11 deletions
|
@ -2,20 +2,14 @@
|
|||
#include <libc.h>
|
||||
|
||||
int
|
||||
opentemp(char *template, int mode)
|
||||
opentemp(char *template)
|
||||
{
|
||||
int fd, fd1;
|
||||
int fd;
|
||||
|
||||
fd = mkstemp(template);
|
||||
if(fd < 0)
|
||||
return -1;
|
||||
/* reopen for mode */
|
||||
fd1 = open(template, mode);
|
||||
if(fd1 < 0){
|
||||
close(fd);
|
||||
remove(template);
|
||||
return -1;
|
||||
}
|
||||
close(fd);
|
||||
return fd1;
|
||||
remove(template);
|
||||
return fd;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue