1
0
mirror of https://github.com/Ylianst/MeshAgent synced 2025-12-25 20:53:15 +00:00

Added documentation to fs

Addressed minor issues from static analysis
This commit is contained in:
Bryan Roe
2022-07-21 00:24:10 -07:00
parent 785f28059c
commit fd93f62fe4
5 changed files with 46 additions and 10 deletions

View File

@@ -1260,7 +1260,7 @@ int kvm_relay_setup(char *exePath, void *processPipeMgr, ILibKVM_WriteHandler wr
if (ThreadRunning == 1 && g_shutdown == 0) { KVMDEBUG("kvm_relay_setup() session already exists", 0); free(parms); return 0; }
kvmthread = CreateThread(NULL, 0, kvm_server_mainloop, (void*)parms, 0, 0);
CloseHandle(kvmthread);
if (kvmthread != 0) { CloseHandle(kvmthread); }
return 1;
}
}