diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-01-12 01:02:15 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-01-12 01:02:15 +0800 |
commit | ad84d268b925a1950625ad85221bb8e9007bb55b (patch) | |
tree | 8661a0a4d0d30354f4a1c2939b8bb94510d63b09 | |
parent | 2de6e5e0bb4d5d6c68fc44bd4ac7e6c1949364df (diff) | |
download | gsoc2013-empathy-ad84d268b925a1950625ad85221bb8e9007bb55b.tar gsoc2013-empathy-ad84d268b925a1950625ad85221bb8e9007bb55b.tar.gz gsoc2013-empathy-ad84d268b925a1950625ad85221bb8e9007bb55b.tar.bz2 gsoc2013-empathy-ad84d268b925a1950625ad85221bb8e9007bb55b.tar.lz gsoc2013-empathy-ad84d268b925a1950625ad85221bb8e9007bb55b.tar.xz gsoc2013-empathy-ad84d268b925a1950625ad85221bb8e9007bb55b.tar.zst gsoc2013-empathy-ad84d268b925a1950625ad85221bb8e9007bb55b.zip |
empathy_pixbuf_contact_status_icon_with_icon_name: icon_name is not supposed to be NULL
-rw-r--r-- | libempathy-gtk/empathy-ui-utils.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libempathy-gtk/empathy-ui-utils.c b/libempathy-gtk/empathy-ui-utils.c index 3fa39d53f..dcba5fe23 100644 --- a/libempathy-gtk/empathy-ui-utils.c +++ b/libempathy-gtk/empathy-ui-utils.c @@ -535,6 +535,7 @@ empathy_pixbuf_contact_status_icon_with_icon_name (EmpathyContact *contact, gint numerator, denominator; g_return_val_if_fail (EMPATHY_IS_CONTACT (contact), NULL); + g_return_val_if_fail (icon_name != NULL, NULL); numerator = 3; denominator = 4; |