guard against NULL keys
2003-03-27 JP Rosevear <jpr@ximian.com> * e-account-list.c (e_account_list_find): guard against NULL keys svn path=/trunk/; revision=20554
This commit is contained in:
@ -1,3 +1,7 @@
|
|||||||
|
2003-03-27 JP Rosevear <jpr@ximian.com>
|
||||||
|
|
||||||
|
* e-account-list.c (e_account_list_find): guard against NULL keys
|
||||||
|
|
||||||
2003-03-25 Dan Winship <danw@ximian.com>
|
2003-03-25 Dan Winship <danw@ximian.com>
|
||||||
|
|
||||||
* e-dialog-utils.c (e_notice): Move this here from gal. Use
|
* e-dialog-utils.c (e_notice): Move this here from gal. Use
|
||||||
|
@ -420,6 +420,9 @@ e_account_list_find(EAccountList *accounts, e_account_find_t type, const char *k
|
|||||||
/* this could use a callback for more flexibility ...
|
/* this could use a callback for more flexibility ...
|
||||||
... but this makes the common cases easier */
|
... but this makes the common cases easier */
|
||||||
|
|
||||||
|
if (!key)
|
||||||
|
return NULL;
|
||||||
|
|
||||||
for (it = e_list_get_iterator ((EList *)accounts);
|
for (it = e_list_get_iterator ((EList *)accounts);
|
||||||
e_iterator_is_valid (it);
|
e_iterator_is_valid (it);
|
||||||
e_iterator_next (it)) {
|
e_iterator_next (it)) {
|
||||||
|
Reference in New Issue
Block a user