mirror of
https://github.com/reactos/reactos.git
synced 2025-01-03 21:09:19 +00:00
[SHELL32] Do not dereference a nullpointer for logging. CORE-13552
svn path=/trunk/; revision=75356
This commit is contained in:
parent
21fc538caa
commit
e41b7d9270
1 changed files with 1 additions and 1 deletions
|
@ -423,7 +423,7 @@ DWORD_PTR WINAPI SHGetFileInfoW(LPCWSTR path,DWORD dwFileAttributes,
|
|||
|
||||
TRACE("%s fattr=0x%x sfi=%p(attr=0x%08x) size=0x%x flags=0x%x\n",
|
||||
(flags & SHGFI_PIDL)? "pidl" : debugstr_w(path), dwFileAttributes,
|
||||
psfi, psfi->dwAttributes, sizeofpsfi, flags);
|
||||
psfi, psfi ? psfi->dwAttributes : 0, sizeofpsfi, flags);
|
||||
|
||||
if (!path)
|
||||
return FALSE;
|
||||
|
|
Loading…
Reference in a new issue