From 56664810f1d481b312babe91e4add84d28f5fc0e Mon Sep 17 00:00:00 2001 From: Arran Cudbard-Bell Date: Fri, 7 Apr 2023 00:15:05 -0700 Subject: [PATCH] fix comment --- src/lib/util/dlist.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/util/dlist.h b/src/lib/util/dlist.h index a88763960e..a0413a6e75 100644 --- a/src/lib/util/dlist.h +++ b/src/lib/util/dlist.h @@ -870,7 +870,7 @@ static inline void fr_dlist_talloc_free_to_tail(fr_dlist_head_t *head, void *ptr { void *e = ptr, *p; - if (!ptr) return; /* uninitialized means don't do anything */ + if (!ptr) return; /* NULL means don't do anything */ while (e) { p = fr_dlist_next(head, e); -- 2.47.2