diff options
author | Wayne Davison <wayned@samba.org> | 2006-11-28 19:34:01 +0000 |
---|---|---|
committer | Wayne Davison <wayned@samba.org> | 2006-11-28 19:34:01 +0000 |
commit | db0f7613e19253fce9de275ebf00bc04e23bc537 (patch) | |
tree | d3e8f3c56ed5dd03070c0f83375381ba1298b9e9 /util.c | |
parent | 45d8bfe09e10cecb49b030767d4bfc995d42b903 (diff) | |
download | rsync-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.c | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -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); |