diff options
Diffstat (limited to 'setup_native')
-rw-r--r-- | setup_native/source/win32/customactions/shellextensions/completeinstallpath.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setup_native/source/win32/customactions/shellextensions/completeinstallpath.cxx b/setup_native/source/win32/customactions/shellextensions/completeinstallpath.cxx index ee8c71369720..787041ed8f7e 100644 --- a/setup_native/source/win32/customactions/shellextensions/completeinstallpath.cxx +++ b/setup_native/source/win32/customactions/shellextensions/completeinstallpath.cxx @@ -104,7 +104,7 @@ extern "C" __declspec(dllexport) UINT __stdcall CompleteInstallPath( MSIHANDLE h if ( oldVersionExists ) { // Adding the new path content sOfficeDirHostname - sInstallLocation = sInstallLocation + sOfficeDirHostname; + sInstallLocation += sOfficeDirHostname; // Setting the new property value MsiSetPropertyW(handle, L"INSTALLLOCATION", sInstallLocation.c_str()); } |