Commit 51e3750f authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

ieframe: Remove unused assignments (PVS-Studio).

parent 802c3f2e
...@@ -504,7 +504,7 @@ static HRESULT WINAPI PersistFile_Load(IPersistFile *pFile, LPCOLESTR pszFileNam ...@@ -504,7 +504,7 @@ static HRESULT WINAPI PersistFile_Load(IPersistFile *pFile, LPCOLESTR pszFileNam
STGM_READWRITE | STGM_SHARE_EXCLUSIVE, STGM_READWRITE | STGM_SHARE_EXCLUSIVE,
&pPropStg); &pPropStg);
r = get_profile_string(str_header, str_iconfile, pszFileName, &iconfile); get_profile_string(str_header, str_iconfile, pszFileName, &iconfile);
if (iconfile != NULL) if (iconfile != NULL)
{ {
PROPSPEC ps; PROPSPEC ps;
...@@ -522,7 +522,7 @@ static HRESULT WINAPI PersistFile_Load(IPersistFile *pFile, LPCOLESTR pszFileNam ...@@ -522,7 +522,7 @@ static HRESULT WINAPI PersistFile_Load(IPersistFile *pFile, LPCOLESTR pszFileNam
CoTaskMemFree(iconfile); CoTaskMemFree(iconfile);
} }
r = get_profile_string(str_header, str_iconindex, pszFileName, &iconindexstring); get_profile_string(str_header, str_iconindex, pszFileName, &iconindexstring);
if (iconindexstring != NULL) if (iconindexstring != NULL)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment