]> granicus.if.org Git - curl/commitdiff
tool_formparse.c: fix possible use of non-null-terminated strings
authorMarc Hoersken <info@marc-hoersken.de>
Fri, 18 Apr 2014 22:17:47 +0000 (00:17 +0200)
committerMarc Hoersken <info@marc-hoersken.de>
Fri, 18 Apr 2014 22:17:47 +0000 (00:17 +0200)
src/tool_formparse.c

index d8fc8fd6cecaa5f23c5109fe88641da6ad95662f..1dcd897e64ddfcdab9b995a5b041b22a2eefab5c 100644 (file)
@@ -150,8 +150,8 @@ int formparse(struct OperationConfig *config,
      build a linked list with the info */
   char name[256];
   char *contents = NULL;
-  char type_major[128];
-  char type_minor[128];
+  char type_major[128] = "";
+  char type_minor[128] = "";
   char *contp;
   const char *type = NULL;
   char *sep;