advpack: Clean up the formatting of RegInstall to match the rest of the file.

This commit is contained in:
James Hawkins 2006-04-28 19:57:48 -05:00 committed by Alexandre Julliard
parent d049c37af2
commit 05c23edaef
1 changed files with 13 additions and 8 deletions

View File

@ -236,7 +236,10 @@ HRESULT WINAPI RegInstallW(HMODULE hm, LPCWSTR pszSection, const STRTABLEW* pstT
goto done;
/* Write the additional string table */
if (pstTable) for(i = 0; i < pstTable->cEntries; i++) {
if (pstTable)
{
for(i = 0; i < pstTable->cEntries; i++)
{
WCHAR tmp_value[MAX_PATH + 2];
tmp_value[0] = '\"';
@ -245,6 +248,8 @@ HRESULT WINAPI RegInstallW(HMODULE hm, LPCWSTR pszSection, const STRTABLEW* pstT
WritePrivateProfileStringW(Strings, pstTable->pse[i].pszName, tmp_value, tmp_ini_path);
}
}
/* flush cache */
WritePrivateProfileStringW(NULL, NULL, NULL, tmp_ini_path);