From 04a964a4f6ec4980596d253b0cd746512aed619e Mon Sep 17 00:00:00 2001
From: Larry Ewing <lewing@ximian.com>
Date: Mon, 23 Jun 2003 16:56:26 +0000
Subject: make sure not to strcmp a possibly NULL string.

2003-06-23  Larry Ewing  <lewing@ximian.com>

	* folder-browser.c (do_message_selected): make sure not to strcmp
	a possibly NULL string.

svn path=/trunk/; revision=21513
---
 mail/folder-browser.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'mail/folder-browser.c')

diff --git a/mail/folder-browser.c b/mail/folder-browser.c
index 0f09f8b7fd..b2b9f2f2f3 100644
--- a/mail/folder-browser.c
+++ b/mail/folder-browser.c
@@ -2473,7 +2473,7 @@ do_message_selected (FolderBrowser *fb)
 	
 	/* if we are loading, then set a pending, but leave the loading, coudl cancel here (?) */
 	if (fb->loading_uid) {
-		if (fb->new_uid == NULL || strcmp(fb->pending_uid, fb->new_uid) != 0) {
+		if (fb->new_uid == NULL || fb->pending_uid == NULL || strcmp(fb->pending_uid, fb->new_uid) != 0) {
 			g_free (fb->pending_uid);
 			fb->pending_uid = g_strdup (fb->new_uid);
 		}
-- 
cgit v1.2.3