diff options
author | Lennart Poettering <lennart@poettering.net> | 2013-11-19 01:15:31 +0100 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2014-01-09 15:34:16 -0500 |
commit | 7edf99d8905af253236732cf538d2b6d1a0c4243 (patch) | |
tree | 0acb27999fe840e9308be337e729e4314514040c /src/libudev/libudev-queue.c | |
parent | fc5bd12597c663380c39d6de3bbef894e6d563f8 (diff) |
libudev: always return NULL in _unref() APIs
Returning anything else but NULL would suggest the caller's reference
might still be valid, but it isn't, because the caller just invoked
_unref() after all.
This turns the return value into a typesafe shortcut that allows
unreffing and resetting a reference in one line. In contrast to
solutions for this which take a pointer to a pointer to accomplish the
same this solution is just syntactic sugar the developer can make use of
but doesn't have to, and this is particularly useful when immediately
unreffing objects returned by function calls.
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Diffstat (limited to 'src/libudev/libudev-queue.c')
-rw-r--r-- | src/libudev/libudev-queue.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libudev/libudev-queue.c b/src/libudev/libudev-queue.c index 0dd20313d9..f67dba9958 100644 --- a/src/libudev/libudev-queue.c +++ b/src/libudev/libudev-queue.c @@ -101,7 +101,7 @@ _public_ struct udev_queue *udev_queue_ref(struct udev_queue *udev_queue) * Drop a reference of a udev queue context. If the refcount reaches zero, * the resources of the queue context will be released. * - * Returns: the passed queue context if it has still an active reference, or #NULL otherwise. + * Returns: #NULL **/ _public_ struct udev_queue *udev_queue_unref(struct udev_queue *udev_queue) { @@ -109,7 +109,7 @@ _public_ struct udev_queue *udev_queue_unref(struct udev_queue *udev_queue) return NULL; udev_queue->refcount--; if (udev_queue->refcount > 0) - return udev_queue; + return NULL; udev_list_cleanup(&udev_queue->queue_list); free(udev_queue); return NULL; |