sd-event: make _ref() calls NOPs when NULL is passed to them

Let's make _ref() calls happy when NULL is passed to them, and simply
return NULL without any assertion logic. This makes them nicely
symmetric to the _unref() calls which also are happy to take NULL and
become NOPs then.
This commit is contained in:
Lennart Poettering 2015-11-19 23:32:52 +01:00
parent bb54817f3b
commit 6680dd6b66
1 changed files with 6 additions and 2 deletions

View File

@ -437,7 +437,9 @@ fail:
}
_public_ sd_event* sd_event_ref(sd_event *e) {
assert_return(e, NULL);
if (!e)
return NULL;
assert(e->n_ref >= 1);
e->n_ref++;
@ -1339,7 +1341,9 @@ _public_ int sd_event_add_exit(
}
_public_ sd_event_source* sd_event_source_ref(sd_event_source *s) {
assert_return(s, NULL);
if (!s)
return NULL;
assert(s->n_ref >= 1);
s->n_ref++;