After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 661199 - Allow NULL g_object_ref/g_object_unref() ?
Allow NULL g_object_ref/g_object_unref() ?
Status: RESOLVED WONTFIX
Product: glib
Classification: Platform
Component: general
unspecified
Other All
: Normal normal
: ---
Assigned To: gtkdev
gtkdev
: 548953 (view as bug list)
Depends on:
Blocks:
 
 
Reported: 2011-10-07 15:54 UTC by Dan Winship
Modified: 2012-08-29 15:34 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
Allow NULL g_object_ref/g_object_unref() (84.96 KB, patch)
2011-10-07 15:54 UTC, Dan Winship
none Details | Review

Description Dan Winship 2011-10-07 15:54:41 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...
Comment 1 Dan Winship 2011-10-07 15:54:43 UTC
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.
Comment 2 David Zeuthen (not reading bugmail) 2011-10-07 16:22:34 UTC
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.
Comment 3 Colin Walters 2011-10-08 15:12:14 UTC
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.
Comment 4 Dan Winship 2011-10-11 12:38:48 UTC
ok, let's not do this then
Comment 5 Emmanuele Bassi (:ebassi) 2012-08-29 14:04:47 UTC
*** Bug 548953 has been marked as a duplicate of this bug. ***
Comment 6 Behdad Esfahbod 2012-08-29 14:13:17 UTC
(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.
Comment 7 Colin Walters 2012-08-29 15:21:42 UTC
(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?
Comment 8 Dan Winship 2012-08-29 15:34:42 UTC
if you were really worried you could arrange to have the new behavior only exist for people who set GLIB_VERSION_MIN_REQUIRED