unlink the temporary file immediately after calling mkstemp
This commit is contained in:
parent
eb6ba2a703
commit
125f62b71e
|
@ -2096,6 +2096,10 @@ int run(char **uris, int n) {
|
||||||
<< std::endl;
|
<< std::endl;
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
if (unlink(tempfn) != 0) {
|
||||||
|
std::cerr << "[WARNING] failed to unlink temporary file:" << tempfn
|
||||||
|
<< std::endl;
|
||||||
|
}
|
||||||
while (1) {
|
while (1) {
|
||||||
char buf[1024];
|
char buf[1024];
|
||||||
ssize_t rret, wret;
|
ssize_t rret, wret;
|
||||||
|
|
Loading…
Reference in New Issue