Fix condition to execute finalizer (#11575)
This commit is contained in:
parent
a0698f853b
commit
47540bc63e
1 changed files with 1 additions and 1 deletions
|
@ -317,7 +317,7 @@ int wmain(int argc, wchar_t* argv[])
|
|||
hr = ::DetectSdk(sczFeatureBandVersion, argv[3], &bSdkFeatureBandInstalled);
|
||||
ExitOnFailure(hr, "Failed to detect installed SDKs.");
|
||||
|
||||
if (bSdkFeatureBandInstalled)
|
||||
if (!bSdkFeatureBandInstalled)
|
||||
{
|
||||
goto LExit;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue