Add NULL check before calling strcmp(). Fixes a crash reported in bug
2007-02-12 Kjartan Maraas <kmaraas@gnome.org> * em-folder-browser.c: (emfb_search_search_activated): Add NULL check before calling strcmp(). Fixes a crash reported in bug #382155. svn path=/trunk/; revision=33204
This commit is contained in:
committed by
Kjartan Maraas
parent
eed15ba5ab
commit
4890b8cf31
@ -1,3 +1,9 @@
|
||||
2007-02-12 Kjartan Maraas <kmaraas@gnome.org>
|
||||
|
||||
* em-folder-browser.c: (emfb_search_search_activated):
|
||||
Add NULL check before calling strcmp(). Fixes a crash
|
||||
reported in bug #382155.
|
||||
|
||||
2007-02-12 Srinivasa Ragavan <sragavan@novell.com>
|
||||
|
||||
** Print migration updates from Ebby Wiselyn
|
||||
|
||||
@ -1057,7 +1057,7 @@ emfb_search_search_activated(ESearchBar *esb, EMFolderBrowser *emfb)
|
||||
|
||||
g_object_get (esb, "query", &search_word, NULL);
|
||||
|
||||
if (efb->all_account_search_vf && !strcmp (search_word, ((CamelVeeFolder *) efb->all_account_search_vf)->expression) ) {
|
||||
if (search_word && efb->all_account_search_vf && !strcmp (search_word, ((CamelVeeFolder *) efb->all_account_search_vf)->expression) ) {
|
||||
/* No real search apart from the existing one */
|
||||
break;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user