Bug 232071 - windows uninstaller cosmetic bug (unescaped \n)... r+sr=bengoodger

This commit is contained in:
bsmedberg%covad.net 2004-02-27 20:17:13 +00:00
parent e424d9006a
commit 3ad1a1e910
2 changed files with 2 additions and 2 deletions

View File

@ -1883,9 +1883,9 @@ void VerifyAndDeleteInstallationFolder()
{
GetPrivateProfileString("Messages", "MB_ATTENTION_STR", "", msgBoxTitle, sizeof(msgBoxTitle), szFileIniUninstall);
GetPrivateProfileString("Messages", "MSG_DELETE_INSTALLATION_PATH", "", buf, sizeof(buf), szFileIniUninstall);
ReplacePrivateProfileStrCR(buf);
_snprintf(msg, sizeof(msg), buf, installationPath);
msg[sizeof(msg) - 1] = '\0';
ReplacePrivateProfileStrCR(msg);
/* Prompt user on if they want the completely remove the
* installation folder */

View File

@ -1883,9 +1883,9 @@ void VerifyAndDeleteInstallationFolder()
{
GetPrivateProfileString("Messages", "MB_ATTENTION_STR", "", msgBoxTitle, sizeof(msgBoxTitle), szFileIniUninstall);
GetPrivateProfileString("Messages", "MSG_DELETE_INSTALLATION_PATH", "", buf, sizeof(buf), szFileIniUninstall);
ReplacePrivateProfileStrCR(buf);
_snprintf(msg, sizeof(msg), buf, installationPath);
msg[sizeof(msg) - 1] = '\0';
ReplacePrivateProfileStrCR(msg);
/* Prompt user on if they want the completely remove the
* installation folder */