From 80ec1decc49c72efec2a8b87c06245c92c0ab807 Mon Sep 17 00:00:00 2001 From: Michael Biebl Date: Thu, 11 Feb 2021 18:11:46 +0100 Subject: New upstream version 1.29.90 --- shared/c-list/src/c-list.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'shared/c-list') diff --git a/shared/c-list/src/c-list.h b/shared/c-list/src/c-list.h index 3d44e330..c92aa6f3 100644 --- a/shared/c-list/src/c-list.h +++ b/shared/c-list/src/c-list.h @@ -87,10 +87,12 @@ static inline _Bool c_list_is_linked(const CList *what) { * c_list_is_empty() - check whether a list is empty * @list: list to check, or NULL * + * This is the same as !c_list_is_linked(). + * * Return: True if @list is empty, false if not. */ static inline _Bool c_list_is_empty(const CList *list) { - return !list || !c_list_is_linked(list); + return !c_list_is_linked(list); } /** -- cgit 1.3.0-6-gf8a5