diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2018-12-19 09:54:27 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2018-12-19 09:54:27 -0500 |
commit | efd9549576f04f4a6fc38ae0de071b25b134e48a (patch) | |
tree | 8c10e864c4b33effc35e5adc7333f0be08a7a647 /util.c | |
parent | 4238b3c8227b79692d54536e75912403e466491a (diff) | |
download | bfs-efd9549576f04f4a6fc38ae0de071b25b134e48a.tar.xz |
util: Don't leak an acl_t on non-POSIX.1e platforms
Diffstat (limited to 'util.c')
-rw-r--r-- | util.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -459,7 +459,8 @@ static bool bfs_check_acl_type(const char *path, acl_type_t type) { break; } #else - return true; + ret = true; + break; #endif } |