shell32: Remove useless NULL check (Coverity).

oldstable
Marcus Meissner 2009-11-19 09:10:03 +01:00 committed by Alexandre Julliard
parent 9145a1cdb2
commit bc85487496
1 changed files with 1 additions and 1 deletions

View File

@ -1468,7 +1468,7 @@ static HRESULT WINAPI UnixFolder_IPersistFolder3_Initialize(IPersistFolder3* ifa
current = ILGetNext(current);
}
if (current && current->mkid.cb) {
if (current->mkid.cb) {
if (_ILIsDrive(current)) {
WCHAR wszDrive[4] = { '?', ':', '\\', 0 };
wszDrive[0] = (WCHAR)*_ILGetTextPointer(current);