diff options
| author | Alex Kubiesa <alex.kubiesa@outlook.com> | 2021-02-15 20:08:21 +0000 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2021-02-15 16:39:59 -0800 |
| commit | 0ce3a9b66da80c505fd8901df88d31b0ad43dac6 (patch) | |
| tree | 8b35cbcbb5d5985d73fef64e7cb81994f3820d7f /src/WixToolset.Core.Burn | |
| parent | c6e2213e818b869c44c1af7355fc06f45ebf1a1f (diff) | |
| download | wix-0ce3a9b66da80c505fd8901df88d31b0ad43dac6.tar.gz wix-0ce3a9b66da80c505fd8901df88d31b0ad43dac6.tar.bz2 wix-0ce3a9b66da80c505fd8901df88d31b0ad43dac6.zip | |
Fix file size overflow error in ProcessPayloadsCommand.
Fixes #4008
Diffstat (limited to 'src/WixToolset.Core.Burn')
| -rw-r--r-- | src/WixToolset.Core.Burn/Bundles/ProcessPayloadsCommand.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/WixToolset.Core.Burn/Bundles/ProcessPayloadsCommand.cs b/src/WixToolset.Core.Burn/Bundles/ProcessPayloadsCommand.cs index 8811c301..db5b03fb 100644 --- a/src/WixToolset.Core.Burn/Bundles/ProcessPayloadsCommand.cs +++ b/src/WixToolset.Core.Burn/Bundles/ProcessPayloadsCommand.cs | |||
| @@ -117,7 +117,7 @@ namespace WixToolset.Core.Burn.Bundles | |||
| 117 | 117 | ||
| 118 | if (null != fileInfo) | 118 | if (null != fileInfo) |
| 119 | { | 119 | { |
| 120 | payload.FileSize = (int)fileInfo.Length; | 120 | payload.FileSize = fileInfo.Length; |
| 121 | 121 | ||
| 122 | payload.Hash = BundleHashAlgorithm.Hash(fileInfo); | 122 | payload.Hash = BundleHashAlgorithm.Hash(fileInfo); |
| 123 | } | 123 | } |
