advpack: Clean up the formatting of RegInstall to match the rest of the file.
This commit is contained in:
parent
d049c37af2
commit
05c23edaef
|
@ -236,7 +236,10 @@ HRESULT WINAPI RegInstallW(HMODULE hm, LPCWSTR pszSection, const STRTABLEW* pstT
|
||||||
goto done;
|
goto done;
|
||||||
|
|
||||||
/* Write the additional string table */
|
/* 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];
|
WCHAR tmp_value[MAX_PATH + 2];
|
||||||
|
|
||||||
tmp_value[0] = '\"';
|
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);
|
WritePrivateProfileStringW(Strings, pstTable->pse[i].pszName, tmp_value, tmp_ini_path);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/* flush cache */
|
/* flush cache */
|
||||||
WritePrivateProfileStringW(NULL, NULL, NULL, tmp_ini_path);
|
WritePrivateProfileStringW(NULL, NULL, NULL, tmp_ini_path);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue