mirror of
git://git.gnupg.org/gnupg.git
synced 2024-12-22 10:19:57 +01:00
gpgtar,w32: Fix file size computation
* tools/gpgtar-create.c (fillup_entry_w32): Move parentheses. -- Fixes-commit: 8b8925a2bdbb12dd537dde20a27cdb1416c2f1ae The bug is so obvious that I wonder why it was not reported more often on Windows. (Adding 1 to MAXDWORD (0xfffffff) always gives 0 for the product). Signed-off-by: Werner Koch <wk@gnupg.org>
This commit is contained in:
parent
d6df1bf849
commit
198b240b19
@ -148,7 +148,7 @@ fillup_entry_w32 (tar_header_t hdr)
|
||||
|
||||
/* Only set the size for a regular file. */
|
||||
if (hdr->typeflag == TF_REGULAR)
|
||||
hdr->size = (fad.nFileSizeHigh * (unsigned long long)(MAXDWORD+1)
|
||||
hdr->size = (fad.nFileSizeHigh * ((unsigned long long)MAXDWORD+1)
|
||||
+ fad.nFileSizeLow);
|
||||
|
||||
hdr->mtime = (((unsigned long long)fad.ftLastWriteTime.dwHighDateTime << 32)
|
||||
|
Loading…
x
Reference in New Issue
Block a user