GNOME Bugzilla – Bug 661199
Allow NULL g_object_ref/g_object_unref() ?
Last modified: 2012-08-29 15:34:42 UTC
as brought up on bug 660994... Pros: - simplifies code - gets rid of noise in GCancellable handling, where it is almost always irrelevant to the caller whether or not the cancellable is NULL - more consistent with g_strdup/g_free, so it makes parallel code look more parallel in many places - stops people from using g_clear_object() when they don't actually care about clearing, just because they wanted easy NULL checking Cons: - obscures the fact that a variable is possibly-NULL - less consistent with most ref/unref/copy/free functions other than g_strdup/g_free, so it makes parallel code look less parallel in many places Of course in both of the "con" cases, you could say "well, just keep the (now-redundant) NULL checking there in those cases then". I'm not convinced either way at this point. Maybe it would be better to just have g_cancellable_ref() / g_cancellable_unref()? Or nothing...
Created attachment 198549 [details] [review] Allow NULL g_object_ref/g_object_unref() Lots of code does stuff like foo->bar = bar ? g_object_ref (bar) : NULL; ... if (foo->bar) g_object_unref (foo->bar); Simplify this by making g_object_ref() and g_object_unref() allow passing a NULL object.
I don't like it. For g_object_unref(), you can use g_clear_object() which works with objects already cleared... And I think g_object_ref() on NULL is a lot less common than g_object_unref() ... so it's not a big problem using the ternary operator.
The main concern I have is it'd be very easy to introduce new code that will crash on older glib versions, and it'd be hard if one wanted to backport to audit every call.
ok, let's not do this then
*** Bug 548953 has been marked as a duplicate of this bug. ***
(In reply to comment #3) > The main concern I have is it'd be very easy to introduce new code that will > crash on older glib versions, and it'd be hard if one wanted to backport to > audit every call. It wouldn't crash, there are g_return_if_fail() guards there. So it will just generate log noise. Please reconsider. It's nicer to be nice to the user.
(In reply to comment #6) > (In reply to comment #3) > > The main concern I have is it'd be very easy to introduce new code that will > > crash on older glib versions, and it'd be hard if one wanted to backport to > > audit every call. > > It wouldn't crash, there are g_return_if_fail() guards there. So it will just > generate log noise. > > Please reconsider. It's nicer to be nice to the user. To be clear that wasn't an objection so much as a concern. Dunno. Anyone else feel strongly about this one way or the other?
if you were really worried you could arrange to have the new behavior only exist for people who set GLIB_VERSION_MIN_REQUIRED