commit | 3f23048f7b69bd4018939ad608797e818828e871 | [log] [tgz] |
---|---|---|
author | rsc <devnull@localhost> | Thu Jun 17 21:19:37 2004 +0000 |
committer | rsc <devnull@localhost> | Thu Jun 17 21:19:37 2004 +0000 |
tree | a8eb5334a7d11e44fa367f0e34993d2ce01918be | |
parent | 005ee04b9f6484c1831c655fcfb246424919fca1 [diff] [blame] |
remove temp files on close
diff --git a/src/lib9/opentemp.c b/src/lib9/opentemp.c index ff2b3f8..f90bf77 100644 --- a/src/lib9/opentemp.c +++ b/src/lib9/opentemp.c
@@ -4,6 +4,12 @@ int opentemp(char *template) { - return mkstemp(template); + int fd; + + fd = mkstemp(template); + if(fd < 0) + return -1; + remove(template); + return fd; }