summaryrefslogtreecommitdiff
path: root/src/libudev/conf-files.c
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2014-01-09 14:44:53 -0500
committerAnthony G. Basile <blueness@gentoo.org>2014-01-09 14:44:53 -0500
commitcc10c90a378db31a880b510c0d6c21a091769dd2 (patch)
tree4fa8d8d51e5d1331a1c9e5cd6fee94540ec4105f /src/libudev/conf-files.c
parent855ce449eba82c417c005d17aa680aba2048ed8d (diff)
Never call qsort on potentially NULL arrays
This extends 62678ded 'efi: never call qsort on potentially NULL arrays' to all other places where qsort is used and it is not obvious that the count is non-zero. Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Diffstat (limited to 'src/libudev/conf-files.c')
-rw-r--r--src/libudev/conf-files.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libudev/conf-files.c b/src/libudev/conf-files.c
index 2baefffad5..2d413999f9 100644
--- a/src/libudev/conf-files.c
+++ b/src/libudev/conf-files.c
@@ -127,7 +127,7 @@ static int conf_files_list_strv_internal(char ***strv, const char *suffix, const
return -ENOMEM;
}
- qsort(files, hashmap_size(fh), sizeof(char *), base_cmp);
+ qsort_safe(files, hashmap_size(fh), sizeof(char *), base_cmp);
*strv = files;
hashmap_free(fh);