shell32: Remove a couple of redundant lines.

This commit is contained in:
Nikolay Sivov 2015-04-07 12:41:28 +03:00 committed by Alexandre Julliard
parent d19790840f
commit 1d3d086560
1 changed files with 1 additions and 5 deletions

View File

@ -1121,12 +1121,8 @@ static HRESULT WINAPI IShellItemArray_fnEnumItems(IShellItemArray *iface,
IEnumShellItems **ppenumShellItems)
{
IShellItemArrayImpl *This = impl_from_IShellItemArray(iface);
HRESULT hr;
TRACE("%p (%p)\n", This, ppenumShellItems);
hr = IEnumShellItems_Constructor(iface, ppenumShellItems);
return hr;
return IEnumShellItems_Constructor(iface, ppenumShellItems);
}
static const IShellItemArrayVtbl vt_IShellItemArray = {