From f987424ed9954239ec0a730b721700ac58c1bf1a Mon Sep 17 00:00:00 2001 From: "Rafael G. Martins" Date: Sun, 10 May 2015 23:10:10 -0300 Subject: fixed a few issues reported by clang's static analyzer --- src/content-parser.c | 2 +- src/utils/mem.c | 4 ++++ src/utils/slist.c | 4 ++++ src/utils/strings.c | 8 +++++++- src/utils/trie.c | 4 ++++ 5 files changed, 20 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/content-parser.c b/src/content-parser.c index ea41852..f19b800 100644 --- a/src/content-parser.c +++ b/src/content-parser.c @@ -306,7 +306,7 @@ blogc_content_parse(const char *src) char *parsed = NULL; char **tmpv = NULL; - char d; + char d = '\0'; b_slist_t *lines = NULL; diff --git a/src/utils/mem.c b/src/utils/mem.c index 04201ff..ff512df 100644 --- a/src/utils/mem.c +++ b/src/utils/mem.c @@ -6,6 +6,10 @@ * See the file COPYING. */ +#ifdef HAVE_CONFIG_H +#include +#endif /* HAVE_CONFIG_H */ + #include #include #include "utils.h" diff --git a/src/utils/slist.c b/src/utils/slist.c index a606977..f82c336 100644 --- a/src/utils/slist.c +++ b/src/utils/slist.c @@ -6,6 +6,10 @@ * See the file COPYING. */ +#ifdef HAVE_CONFIG_H +#include +#endif /* HAVE_CONFIG_H */ + #include #include "utils.h" diff --git a/src/utils/strings.c b/src/utils/strings.c index 04ccc7a..4a48f6d 100644 --- a/src/utils/strings.c +++ b/src/utils/strings.c @@ -6,6 +6,10 @@ * See the file COPYING. */ +#ifdef HAVE_CONFIG_H +#include +#endif /* HAVE_CONFIG_H */ + #include #include #include @@ -57,8 +61,10 @@ b_strdup_vprintf(const char *format, va_list ap) if (!tmp) return NULL; int l2 = vsnprintf(tmp, l + 1, format, ap); - if (l2 < 0) + if (l2 < 0) { + free(tmp); return NULL; + } return tmp; } diff --git a/src/utils/trie.c b/src/utils/trie.c index f3933a3..22d8c48 100644 --- a/src/utils/trie.c +++ b/src/utils/trie.c @@ -6,6 +6,10 @@ * See the file COPYING. */ +#ifdef HAVE_CONFIG_H +#include +#endif /* HAVE_CONFIG_H */ + #include #include #include -- cgit v1.2.3-18-g5258