X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/264042760bd909eeca281dc8c937357e98bf6bf8..aac5cab80b9d4fc0adff2b72aeba2406176930ae:/util.c 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);