Sophie

Sophie

distrib > Scientific%20Linux > 5x > x86_64 > by-pkgid > 56662f8135650f8f8f84b2c96c004eb0 > files > 77

php53-5.3.3-24.el5.src.rpm


Fix transposed memset arguments.

--- php-5.3.3/ext/zip/lib/zip_dirent.c.zipmemset
+++ php-5.3.3/ext/zip/lib/zip_dirent.c
@@ -475,7 +475,7 @@ _zip_d2u_time(int dtime, int ddate)
 {
     struct tm tm;
 
-    memset(&tm, sizeof(tm), 0);
+    memset(&tm, 0, sizeof(tm));
     
     /* let mktime decide if DST is in effect */
     tm.tm_isdst = -1;