diff options
author | Max Kellermann <max@duempel.org> | 2012-08-15 22:19:03 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2012-08-15 22:44:13 +0200 |
commit | 2276e7677b5fc9154bc5019325100da96ca9967a (patch) | |
tree | e7eb3f2617630ee0d0b5db6d03c24c72623641c2 /src/mapper.c | |
parent | 93f9c2ab6b1a61456f8acbf9a243d05571d005ec (diff) | |
download | mpd-2276e7677b5fc9154bc5019325100da96ca9967a.tar.gz mpd-2276e7677b5fc9154bc5019325100da96ca9967a.tar.xz mpd-2276e7677b5fc9154bc5019325100da96ca9967a.zip |
mapper: fix potential crash in file permission check
Diffstat (limited to 'src/mapper.c')
-rw-r--r-- | src/mapper.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mapper.c b/src/mapper.c index 6a968e32d..7db74b1af 100644 --- a/src/mapper.c +++ b/src/mapper.c @@ -93,10 +93,10 @@ check_directory(const char *path) #endif DIR *dir = opendir(path); - if (dir == NULL && errno == EACCES) - g_warning("No permission to read directory: %s", path); - else + if (dir != NULL) closedir(dir); + else if (errno == EACCES) + g_warning("No permission to read directory: %s", path); } static void |