shell32: Remove useless NULL check (Coverity).
This commit is contained in:
parent
9145a1cdb2
commit
bc85487496
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue