aboutsummaryrefslogtreecommitdiff
path: root/src/burn/engine/core.cpp
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2026-01-30 15:18:43 -0800
committerRob Mensching <rob@firegiant.com>2026-01-30 18:38:41 -0800
commit7c3c2cad3c5e95fac151debc89c2f5629b4c6b21 (patch)
tree6d43cdcef8d50a2c524b26681418cee425a39651 /src/burn/engine/core.cpp
parenta16948df3c51f872e750798a967505a93b8439d5 (diff)
downloadwix-7c3c2cad3c5e95fac151debc89c2f5629b4c6b21.tar.gz
wix-7c3c2cad3c5e95fac151debc89c2f5629b4c6b21.tar.bz2
wix-7c3c2cad3c5e95fac151debc89c2f5629b4c6b21.zip
Many small code quality fixes
Diffstat (limited to 'src/burn/engine/core.cpp')
-rw-r--r--src/burn/engine/core.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/burn/engine/core.cpp b/src/burn/engine/core.cpp
index de202321..2dfa4857 100644
--- a/src/burn/engine/core.cpp
+++ b/src/burn/engine/core.cpp
@@ -1232,8 +1232,11 @@ HRESULT CoreAppendLogToCommandLine(
1232 hr = StrAllocConcat(psczCommandLine, szLogArgFormatted, 0); 1232 hr = StrAllocConcat(psczCommandLine, szLogArgFormatted, 0);
1233 ExitOnFailure(hr, "Failed concatenating '-log' to command line"); 1233 ExitOnFailure(hr, "Failed concatenating '-log' to command line");
1234 1234
1235 hr = StrAllocConcat(psczObfuscatedCommandLine, szLogArgFormatted, 0); 1235 if (psczObfuscatedCommandLine)
1236 ExitOnFailure(hr, "Failed concatenating '-log' to obfuscated command line"); 1236 {
1237 hr = StrAllocConcat(psczObfuscatedCommandLine, szLogArgFormatted, 0);
1238 ExitOnFailure(hr, "Failed concatenating '-log' to obfuscated command line");
1239 }
1237 1240
1238LExit: 1241LExit:
1239 if (rgszArgs) 1242 if (rgszArgs)