X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/681930474072737451ca95ab5682c7ad69e95060..0f9c48b1d23fbe958544094e97ba8ad2a7d8b8f4:/zlib/zutil.c diff --git a/zlib/zutil.c b/zlib/zutil.c index 2aafdab3..91f0ad42 100644 --- a/zlib/zutil.c +++ b/zlib/zutil.c @@ -1,5 +1,5 @@ /* zutil.c -- target dependent utility functions for the compression library - * Copyright (C) 1995-1998 Jean-loup Gailly. + * Copyright (C) 1995-2002 Jean-loup Gailly. * For conditions of distribution and use, see copyright notice in zlib.h */ @@ -213,7 +213,7 @@ void zcfree (opaque, ptr) voidpf opaque; voidpf ptr; { - if (ptr) free(ptr); + free(ptr); if (opaque) return; /* make compiler happy */ }