diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-04-07 00:09:59 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-04-07 00:09:59 +0200 |
commit | 2f357920ffd58e7b56940c64ab8d14a83a27b9f1 (patch) | |
tree | 648a2faa13032101a45d09a468d559eeeee4e9d5 /util.c | |
parent | a5dab5ce0fd4aafc394afe30eda0e6b01a13256b (diff) |
util: don't fail if we cannot close valgrind's fds
Diffstat (limited to 'util.c')
-rw-r--r-- | util.c | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -1162,10 +1162,15 @@ int close_all_fds(const int except[], unsigned n_except) { continue; } - if ((r = close_nointr(fd)) < 0) - goto finish; + if ((r = close_nointr(fd)) < 0) { + /* Valgrind has its own FD and doesn't want to have it closed */ + if (errno != EBADF) + goto finish; + } } + r = 0; + finish: closedir(d); return r; |