From e7a6b87c2d8b480632e88f8b761c1b9c5e55f483 Mon Sep 17 00:00:00 2001 From: Maarten Lankhorst Date: Fri, 26 Nov 2010 20:21:37 +0100 Subject: [PATCH] shell32: Fix pointer truncation in SHGetFileInfoA. --- dlls/shell32/shell32_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/shell32/shell32_main.c b/dlls/shell32/shell32_main.c index 227b63e9d2c..af0cb4b081f 100644 --- a/dlls/shell32/shell32_main.c +++ b/dlls/shell32/shell32_main.c @@ -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)