Got rid of an incorrect comment.
authorWayne Davison <wayned@samba.org>
Tue, 28 Nov 2006 19:34:01 +0000 (19:34 +0000)
committerWayne Davison <wayned@samba.org>
Tue, 28 Nov 2006 19:34:01 +0000 (19:34 +0000)
util.c

diff --git a/util.c b/util.c
index cdf68bc..647d6f5 100644 (file)
--- 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);