GNOME Bugzilla – Bug 682944
Allow NULL to be passed to g_object_ref/unref and friends
Last modified: 2012-08-29 20:23:09 UTC
Makes code more readable. Say, I have to write this right now: PangoFontMap *fontmap = g_weak_ref_get ((GWeakRef *) &fcfont->fontmap); g_value_set_object (value, fontmap); if (fontmap) g_object_unref (fontmap); Would have been nicer not have to do the check.
you already filed this bug :-) it actually has been filed again and closed as WONTFIX if I remember correctly. *** This bug has been marked as a duplicate of bug 548953 ***
Haha. I expected WONTFIX in fact, but still...
g_value_set_object (value, fontmap); if (fontmap) g_object_unref (fontmap); -> g_value_take_object()... even saves the extra ref/unref.
Ah, thanks.