X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=zip.c;h=be5c4b0b95267ddfaa67c3f439a87369d2e02f1c;hb=92249085071a973e2c0621b0415b93d2e48bb00d;hp=178bfd0752d55629cfdb51f6be61999a079bb0ba;hpb=20fcfc81ece044b8b0a6768ec6cf47be4e22a2e6;p=debian%2Fgzip diff --git a/zip.c b/zip.c index 178bfd0..be5c4b0 100644 --- a/zip.c +++ b/zip.c @@ -1,6 +1,6 @@ /* zip.c -- compress files to the gzip or pkzip format - Copyright (C) 1997-1999, 2006-2007, 2009-2016 Free Software Foundation, Inc. + Copyright (C) 1997-1999, 2006-2007, 2009-2018 Free Software Foundation, Inc. Copyright (C) 1992-1993 Jean-loup Gailly This program is free software; you can redistribute it and/or modify @@ -54,9 +54,17 @@ int zip(in, out) flags |= ORIG_NAME; } put_byte(flags); /* general flags */ - stamp = (0 <= time_stamp.tv_sec && time_stamp.tv_sec <= 0xffffffff - ? (ulg) time_stamp.tv_sec - : (ulg) 0); + if (time_stamp.tv_nsec < 0) + stamp = 0; + else if (0 < time_stamp.tv_sec && time_stamp.tv_sec <= 0xffffffff) + stamp = time_stamp.tv_sec; + else + { + /* It's intended that timestamp 0 generates this warning, + since gzip format reserves 0 for something else. */ + warning ("file timestamp out of range for gzip format"); + stamp = 0; + } put_long (stamp); /* Write deflated file to zip file */ @@ -80,8 +88,8 @@ int zip(in, out) (void)deflate(); #ifndef NO_SIZE_CHECK - /* Check input size (but not in VMS -- variable record lengths mess it up) - * and not on MSDOS -- diet in TSR mode reports an incorrect file size) + /* Check input size + * (but not on MSDOS -- diet in TSR mode reports an incorrect file size) */ if (ifile_size != -1L && bytes_in != ifile_size) { fprintf(stderr, "%s: %s: file size changed while zipping\n", @@ -116,7 +124,6 @@ int file_read(buf, size) if (len == 0) return (int)len; if (len == (unsigned)-1) { read_error(); - return EOF; } crc = updcrc((uch*)buf, len);