diff options
author | Anatoliy Belsky <ab@php.net> | 2012-06-05 20:11:07 (GMT) |
---|---|---|
committer | Anatoliy Belsky <ab@php.net> | 2012-06-07 19:01:31 (GMT) |
commit | f4a44f18b8fe5d23a11d12b048d4effce283379f (patch) | |
tree | 35850a34200dc4be272f16fa486f83a4f25194dd /ext/zip/lib/zip_dirent.c | |
parent | a39bcfc5ee3931c25bdbc5dc2409e6d9dd98ff52 (diff) | |
download | php-f4a44f18b8fe5d23a11d12b048d4effce283379f.tar.gz |
rechecked the merged libzip, took also the indents from the original to
avoid confusion next time
Diffstat (limited to 'ext/zip/lib/zip_dirent.c')
-rw-r--r-- | ext/zip/lib/zip_dirent.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/zip/lib/zip_dirent.c b/ext/zip/lib/zip_dirent.c index 6cb9ee3..b5b9d27 100644 --- a/ext/zip/lib/zip_dirent.c +++ b/ext/zip/lib/zip_dirent.c @@ -472,7 +472,7 @@ _zip_dirent_write(struct zip_dirent *zde, FILE *fp, int localp, static time_t _zip_d2u_time(int dtime, int ddate) { - struct tm tm = {0}; + struct tm tm; memset(&tm, 0, sizeof(tm)); |