Blame SOURCES/tftp-0.40-remap.patch

ecbeaa
diff -up tftp-hpa-0.49/tftpd/remap.c.zero tftp-hpa-0.49/tftpd/remap.c
ecbeaa
--- tftp-hpa-0.49/tftpd/remap.c.zero	2008-10-20 18:08:31.000000000 -0400
ecbeaa
+++ tftp-hpa-0.49/tftpd/remap.c	2008-11-25 11:41:09.000000000 -0500
ecbeaa
@@ -286,6 +286,7 @@ struct rule *parserulefile(FILE * f)
ecbeaa
     int lineno = 0;
ecbeaa
     int err = 0;
ecbeaa
 
ecbeaa
+    memset(this_rule, '\0', sizeof(struct rule));
ecbeaa
     while (lineno++, fgets(line, MAXLINE, f)) {
ecbeaa
         rv = parseline(line, this_rule, lineno);
ecbeaa
         if (rv < 0)
ecbeaa
@@ -294,6 +295,7 @@ struct rule *parserulefile(FILE * f)
ecbeaa
             *last_rule = this_rule;
ecbeaa
             last_rule = &this_rule->next;
ecbeaa
             this_rule = tfmalloc(sizeof(struct rule));
ecbeaa
+            memset(this_rule, '\0', sizeof(struct rule));
ecbeaa
         }
ecbeaa
     }
ecbeaa