summaryrefslogtreecommitdiff
path: root/util.c
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2006-11-28 19:34:01 +0000
committerWayne Davison <wayned@samba.org>2006-11-28 19:34:01 +0000
commitdb0f7613e19253fce9de275ebf00bc04e23bc537 (patch)
treed3e8f3c56ed5dd03070c0f83375381ba1298b9e9 /util.c
parent45d8bfe09e10cecb49b030767d4bfc995d42b903 (diff)
downloadrsync-db0f7613e19253fce9de275ebf00bc04e23bc537.tar.gz
rsync-db0f7613e19253fce9de275ebf00bc04e23bc537.tar.bz2
rsync-db0f7613e19253fce9de275ebf00bc04e23bc537.zip
Got rid of an incorrect comment.
Diffstat (limited to 'util.c')
-rw-r--r--util.c1
1 files changed, 0 insertions, 1 deletions
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);