--- a/src/status.c Fri Dec 09 07:26:29 2005 +0000 +++ b/src/status.c Fri Dec 09 12:46:24 2005 +0000 @@ -972,7 +972,9 @@ /* Make sure this attribute exists. */ attr = gaim_status_type_get_attr(status_type, id); - g_return_val_if_fail(attr != NULL, NULL); + + if (attr == NULL) + return NULL; return (GaimValue *)g_hash_table_lookup(status->attr_values, id); }