Blame SOURCES/0029-Fix-segfault-in-config-file-parser.patch

bd689f
From 34b9e1d10c6be736f1b20be8795c655446f38c5e Mon Sep 17 00:00:00 2001
bd689f
From: Martin Sehnoutka <msehnout@redhat.com>
bd689f
Date: Thu, 17 Nov 2016 13:14:55 +0100
bd689f
Subject: [PATCH 29/59] Fix segfault in config file parser.
bd689f
bd689f
---
bd689f
 str.c | 2 +-
bd689f
 1 file changed, 1 insertion(+), 1 deletion(-)
bd689f
bd689f
diff --git a/str.c b/str.c
bd689f
index 41b27db..82b8ae4 100644
bd689f
--- a/str.c
bd689f
+++ b/str.c
bd689f
@@ -113,7 +113,7 @@ str_strdup_trimmed(const struct mystr* p_str)
bd689f
   for (h = 0; h < (int)str_getlen(p_str) && vsf_sysutil_isspace(p_trimmed[h]); h++) ;
bd689f
   for (t = str_getlen(p_str) - 1; t >= 0 && vsf_sysutil_isspace(p_trimmed[t]); t--) ;
bd689f
   newlen = t - h + 1;
bd689f
-  return newlen ? vsf_sysutil_strndup(p_trimmed+h, (unsigned int)newlen) : 0L;
bd689f
+  return (newlen > 0) ? vsf_sysutil_strndup(p_trimmed+h, (unsigned int)newlen) : 0L;
bd689f
 }
bd689f
 
bd689f
 void
bd689f
-- 
bd689f
2.14.4
bd689f