shell32: Fix pointer truncation in SHGetFileInfoA.

This commit is contained in:
Maarten Lankhorst 2010-11-26 20:21:37 +01:00 committed by Alexandre Julliard
parent f53d82b4f4
commit e7a6b87c2d
1 changed files with 1 additions and 1 deletions

View File

@ -675,7 +675,7 @@ DWORD_PTR WINAPI SHGetFileInfoA(LPCSTR path,DWORD dwFileAttributes,
INT len;
LPWSTR temppath = NULL;
LPCWSTR pathW;
DWORD ret;
DWORD_PTR ret;
SHFILEINFOW temppsfi;
if (flags & SHGFI_PIDL)