Commit 04380452 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

shell32: Fix a mem leak on an error path. Found by Smatch.

parent 17dc1748
...@@ -684,6 +684,7 @@ static HRESULT WINAPI ISF_MyComputer_fnGetDisplayNameOf (IShellFolder2 *iface, ...@@ -684,6 +684,7 @@ static HRESULT WINAPI ISF_MyComputer_fnGetDisplayNameOf (IShellFolder2 *iface,
{ {
/* Neither a shell namespace extension nor a drive letter. */ /* Neither a shell namespace extension nor a drive letter. */
ERR("Wrong pidl type\n"); ERR("Wrong pidl type\n");
CoTaskMemFree(pszPath);
return E_INVALIDARG; return E_INVALIDARG;
} }
} }
......
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