[host] windows: fix crash on failure to init a capture interface

This commit is contained in:
Geoffrey McRae 2024-03-09 11:30:35 +11:00
parent d5b32225f4
commit da820769e8

View File

@ -894,10 +894,10 @@ int app_main(int argc, char * argv[])
CaptureInterface * iface = NULL; CaptureInterface * iface = NULL;
for(int i = 0; CaptureInterfaces[i]; ++i) for(int i = 0; CaptureInterfaces[i]; ++i)
{ {
iface = CaptureInterfaces[i]; if (*ifaceName && strcasecmp(ifaceName, CaptureInterfaces[i]->shortName))
if (*ifaceName && strcasecmp(ifaceName, iface->shortName))
continue; continue;
iface = CaptureInterfaces[i];
DEBUG_INFO("Trying : %s", iface->getName()); DEBUG_INFO("Trying : %s", iface->getName());
if (!iface->create( if (!iface->create(
@ -1066,6 +1066,7 @@ fail:
stopThreads(); stopThreads();
captureStop(); captureStop();
app.iface->free(); app.iface->free();
LG_LOCK_FREE(app.pointerLock); LG_LOCK_FREE(app.pointerLock);
fail_lgmp: fail_lgmp: