diff options
author | David Herrmann <dh.herrmann@gmail.com> | 2014-11-27 16:08:46 +0100 |
---|---|---|
committer | David Herrmann <dh.herrmann@gmail.com> | 2014-11-27 16:10:44 +0100 |
commit | 0f84a72e3c0f58d71cff2121e6df1611eaf9c9ea (patch) | |
tree | defc60dc5073ffe1c27cb2c33f6a73d2c3420619 /src/shared/strv.h | |
parent | 342f3005f57fe293d3b43148f8c900f2cbc6f7f7 (diff) |
resolve: fix NULL deref on strv comparison
A strv might be NULL if it is empty. The txt.strings comparison doesn't
take that into account. Introduce strv_equal() to provide a proper helper
for this and fix resolve to use it.
Thanks to Stanisław Pitucha <viraptor@gmail.com> for reporting this!
Diffstat (limited to 'src/shared/strv.h')
-rw-r--r-- | src/shared/strv.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/shared/strv.h b/src/shared/strv.h index 47618bd26c..774c67a8c8 100644 --- a/src/shared/strv.h +++ b/src/shared/strv.h @@ -49,6 +49,8 @@ int strv_consume_prepend(char ***l, char *value); char **strv_remove(char **l, const char *s); char **strv_uniq(char **l); +bool strv_equal(char **a, char **b); + #define strv_contains(l, s) (!!strv_find((l), (s))) char **strv_new(const char *x, ...) _sentinel_; |