[SHELL32]

- Fix yet another missing "this->", spotted by Igor Sudarikov
CORE-6722 #resolve #comment Good catch, thanks.

svn path=/trunk/; revision=57486
This commit is contained in:
Thomas Faber 2012-10-05 10:51:54 +00:00
parent 19fd89e40f
commit 60049c9aa5

View file

@ -727,7 +727,7 @@ HRESULT WINAPI CDrivesFolder::SetNameOf(HWND hwndOwner, LPCITEMIDLIST pidl,
}
wcscpy(sName, lpName);
SHFree(sName);
SHFree(this->sName);
this->sName = sName;
TRACE("result %s\n", debugstr_w(sName));
return S_OK;