]> andersk Git - moira.git/commitdiff
Fix uninitialized queue element pointer in CreateImapBox().
authorrbasch <rbasch>
Fri, 18 Feb 2000 17:07:58 +0000 (17:07 +0000)
committerrbasch <rbasch>
Fri, 18 Feb 2000 17:07:58 +0000 (17:07 +0000)
clients/moira/pobox.c

index 9c083ed350a1dc2d4df53035e8c964d26200da00..466461e60363f41a0671c212fb1863148ac73997 100644 (file)
@@ -205,7 +205,7 @@ static int AddImapPartitions(char *server, struct mqelem **parts)
 char *CreateImapBox(char *user)
 {
   int status;
-  struct mqelem *elem, *servers = NULL, *partitions = NULL;
+  struct mqelem *elem = NULL, *servers = NULL, *partitions = NULL;
   char *server = NULL, *partition = NULL;
   char *argv[11], *fsname, temp_buf[BUFSIZ];
   static char *default_imap_quota = NULL;
This page took 0.052623 seconds and 5 git commands to generate.