Use continue instead of relying on garbage bool

This commit is contained in:
Luis Ángel San Martín 2021-09-30 22:07:18 +02:00
parent 32b4e420a2
commit 3291300d51

View File

@ -376,6 +376,8 @@ CompressedArchive::CompressedArchive(const QString &filePath, QObject *parent)
isDir = VARIANT_BOOLToBool(prop.boolVal);
else if (prop.vt == VT_EMPTY)
isDir = false;
else
continue;
if (!isDir) {
szInterface->archive->GetProperty(i, kpidPath, &prop);