From 58ee0f743811d4693ec91661b982677a1cfff7e9 Mon Sep 17 00:00:00 2001 From: Christian Kreibich Date: Tue, 19 Nov 2024 13:58:49 -0800 Subject: [PATCH] Trivial: remove duplicate comment --- src/util.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/util.h b/src/util.h index f2615063104..d1c8e5df48a 100644 --- a/src/util.h +++ b/src/util.h @@ -490,8 +490,6 @@ extern void safe_close(int fd); // Versions of realloc/malloc which abort() on out of memory -// Versions of realloc/malloc which abort() on out of memory - inline void* safe_realloc(void* ptr, size_t size) { ptr = realloc(ptr, size); if ( size && ! ptr )