shlwapi: Remove redundant "not NULL" checks of the len arg (coccicheck).

This commit is contained in:
Michael Stefaniuc 2010-05-20 01:14:19 +02:00 committed by Alexandre Julliard
parent 4134c57a91
commit f38336d82a
1 changed files with 2 additions and 2 deletions

View File

@ -1415,7 +1415,7 @@ HRESULT WINAPI StrRetToBufW (LPSTRRET src, const ITEMIDLIST *pidl, LPWSTR dest,
break; break;
case STRRET_CSTR: case STRRET_CSTR:
if (!MultiByteToWideChar( CP_ACP, 0, src->u.cStr, -1, dest, len ) && len) if (!MultiByteToWideChar( CP_ACP, 0, src->u.cStr, -1, dest, len ))
dest[len-1] = 0; dest[len-1] = 0;
break; break;
@ -1423,7 +1423,7 @@ HRESULT WINAPI StrRetToBufW (LPSTRRET src, const ITEMIDLIST *pidl, LPWSTR dest,
if (pidl) if (pidl)
{ {
if (!MultiByteToWideChar( CP_ACP, 0, ((LPCSTR)&pidl->mkid)+src->u.uOffset, -1, if (!MultiByteToWideChar( CP_ACP, 0, ((LPCSTR)&pidl->mkid)+src->u.uOffset, -1,
dest, len ) && len) dest, len ))
dest[len-1] = 0; dest[len-1] = 0;
} }
break; break;