Skip to content

Commit

Permalink
fix(installer): avoid unicode char literals (#376)
Browse files Browse the repository at this point in the history
  • Loading branch information
thenextman authored Jan 16, 2023
1 parent 43df058 commit 8d94f94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package/Windows/Actions/CustomAction.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -961,7 +961,7 @@ UINT __stdcall ValidateCertificate(MSIHANDLE hInstall)

for (int i = 0; i < lstrlenW(szCertPass); i++)
{
szValBuf[i] = L'';
szValBuf[i] = L'*';
}

szValBuf[lstrlenW(szCertPass)] = L'\0';
Expand Down

0 comments on commit 8d94f94

Please sign in to comment.