]> git.marmaro.de Git - mmh/commitdiff
new: sequences[0] needs to be initialized to NULL.
authormarkus schnalke <meillo@marmaro.de>
Tue, 27 Mar 2012 09:42:39 +0000 (11:42 +0200)
committermarkus schnalke <meillo@marmaro.de>
Tue, 27 Mar 2012 09:42:39 +0000 (11:42 +0200)
This was caught by the nmh test suite.

Pulled in from nmh. Thanks to David Levine.

uip/new.c

index a4da635792bf3f0a887d530fa5ccfd85211d1106..f6ac3642f95f2799d52481ec7c3e07d51a6185f9 100644 (file)
--- a/uip/new.c
+++ b/uip/new.c
@@ -432,6 +432,8 @@ main(int argc, char **argv)
        char *unseen;
        struct node *folder;
 
+       sequences[0] = NULL;
+
 #ifdef LOCALE
        setlocale(LC_ALL, "");
 #endif