From 65e948466dc663faefb47329c5cd3fec1e006d72 Mon Sep 17 00:00:00 2001 From: Jeffrey Stedfast Date: Fri, 1 Dec 2000 04:25:43 +0000 Subject: Fix a possible bug where 'name' could be uninitialized. 2000-11-30 Jeffrey Stedfast * providers/imap/camel-imap-store.c (parse_list_response_as_folder_info): Fix a possible bug where 'name' could be uninitialized. * camel-folder-summary.c (camel_message_info_new): New convenience function, doesn't do much but it sure makes code cleaner to read. (camel_message_info_new_from_header): This one makes my life heaven. svn path=/trunk/; revision=6752 --- camel/providers/imap/camel-imap-store.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'camel/providers') diff --git a/camel/providers/imap/camel-imap-store.c b/camel/providers/imap/camel-imap-store.c index 7d87a9263e..aa5d003674 100644 --- a/camel/providers/imap/camel-imap-store.c +++ b/camel/providers/imap/camel-imap-store.c @@ -571,7 +571,7 @@ parse_list_response_as_folder_info (CamelImapStore *imap_store, { CamelFolderInfo *fi; int flags; - char sep, *dir, *name; + char sep, *dir, *name = NULL; if (!imap_parse_list_response (response, &flags, &sep, &dir)) return NULL; -- cgit v1.2.3