diff options
author | Bob Arnson <bob@firegiant.com> | 2022-09-09 21:21:55 -0400 |
---|---|---|
committer | Bob Arnson <github@bobs.org> | 2022-09-12 13:33:03 -0400 |
commit | 6a45cb7687de57056532fe897a708435deec2ea3 (patch) | |
tree | a9795ac837d0475ea22d86c0d592fac7b0b6c159 /src/api/burn/balutil/BalBootstrapperEngine.cpp | |
parent | a1307cd4e76a89598c53cb68309358a7012db553 (diff) | |
download | wix-6a45cb7687de57056532fe897a708435deec2ea3.tar.gz wix-6a45cb7687de57056532fe897a708435deec2ea3.tar.bz2 wix-6a45cb7687de57056532fe897a708435deec2ea3.zip |
Update hashes are now hex strings.
Fixes https://github.com/wixtoolset/issues/issues/6901.
Diffstat (limited to 'src/api/burn/balutil/BalBootstrapperEngine.cpp')
-rw-r--r-- | src/api/burn/balutil/BalBootstrapperEngine.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/api/burn/balutil/BalBootstrapperEngine.cpp b/src/api/burn/balutil/BalBootstrapperEngine.cpp index 301b88a5..898a8a15 100644 --- a/src/api/burn/balutil/BalBootstrapperEngine.cpp +++ b/src/api/burn/balutil/BalBootstrapperEngine.cpp | |||
@@ -312,8 +312,7 @@ public: // IBootstrapperEngine | |||
312 | __in_z_opt LPCWSTR wzDownloadSource, | 312 | __in_z_opt LPCWSTR wzDownloadSource, |
313 | __in DWORD64 qwSize, | 313 | __in DWORD64 qwSize, |
314 | __in BOOTSTRAPPER_UPDATE_HASH_TYPE hashType, | 314 | __in BOOTSTRAPPER_UPDATE_HASH_TYPE hashType, |
315 | __in_bcount_opt(cbHash) BYTE* rgbHash, | 315 | __in_z_opt LPCWSTR wzHash |
316 | __in DWORD cbHash | ||
317 | ) | 316 | ) |
318 | { | 317 | { |
319 | BAENGINE_SETUPDATE_ARGS args = { }; | 318 | BAENGINE_SETUPDATE_ARGS args = { }; |
@@ -324,8 +323,7 @@ public: // IBootstrapperEngine | |||
324 | args.wzDownloadSource = wzDownloadSource; | 323 | args.wzDownloadSource = wzDownloadSource; |
325 | args.qwSize = qwSize; | 324 | args.qwSize = qwSize; |
326 | args.hashType = hashType; | 325 | args.hashType = hashType; |
327 | args.rgbHash = rgbHash; | 326 | args.wzHash = wzHash; |
328 | args.cbHash = cbHash; | ||
329 | 327 | ||
330 | results.cbSize = sizeof(results); | 328 | results.cbSize = sizeof(results); |
331 | 329 | ||