Merge the zlib fix properly; back out tridge's bandaid.
[rsync/rsync.git] / zlib / zutil.c
index 2aafdab..7fb0327 100644 (file)
@@ -213,7 +213,7 @@ void  zcfree (opaque, ptr)
     voidpf opaque;
     voidpf ptr;
 {
-    if (ptr) free(ptr);
+    free(ptr);
     if (opaque) return; /* make compiler happy */
 }