From db0f7613e19253fce9de275ebf00bc04e23bc537 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Tue, 28 Nov 2006 19:34:01 +0000 Subject: [PATCH] Got rid of an incorrect comment. --- util.c | 1 - 1 file changed, 1 deletion(-) diff --git a/util.c b/util.c index cdf68bcb..647d6f51 100644 --- a/util.c +++ b/util.c @@ -1264,7 +1264,6 @@ void *_realloc_array(void *ptr, unsigned int size, unsigned long num) { if (num >= MALLOC_MAX/size) return NULL; - /* No realloc should need this, but just in case... */ if (!ptr) return malloc(size * num); return realloc(ptr, size * num); -- 2.34.1