]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
fix comment
authorArran Cudbard-Bell <a.cudbardb@freeradius.org>
Fri, 7 Apr 2023 07:15:05 +0000 (00:15 -0700)
committerArran Cudbard-Bell <a.cudbardb@freeradius.org>
Fri, 7 Apr 2023 07:15:05 +0000 (00:15 -0700)
src/lib/util/dlist.h

index a88763960e45b971937ae36debdb0c11b218e6e3..a0413a6e75ae2cbd65bc0fe4fe0d87965a4ee01c 100644 (file)
@@ -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);