comctl32: Fix a compiler warning.

This commit is contained in:
Alexandre Julliard 2007-12-07 18:43:05 +01:00
parent d65c667817
commit b406e9a7b4
1 changed files with 2 additions and 2 deletions

View File

@ -5040,12 +5040,12 @@ static INT LISTVIEW_FindItemA(const LISTVIEW_INFO *infoPtr, INT nStart,
BOOL hasText = lpFindInfo->flags & (LVFI_STRING | LVFI_PARTIAL);
LVFINDINFOW fiw;
INT res;
LPWSTR strW;
LPWSTR strW = NULL;
memcpy(&fiw, lpFindInfo, sizeof(fiw));
if (hasText) fiw.psz = strW = textdupTtoW((LPCWSTR)lpFindInfo->psz, FALSE);
res = LISTVIEW_FindItemW(infoPtr, nStart, &fiw);
if (hasText) textfreeT(strW, FALSE);
textfreeT(strW, FALSE);
return res;
}