From: Wayne Davison Date: Tue, 28 Nov 2006 19:34:01 +0000 (+0000) Subject: Got rid of an incorrect comment. X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/db0f7613e19253fce9de275ebf00bc04e23bc537 Got rid of an incorrect comment. --- 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);