mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-14 21:17:54 +00:00
[host] nvfbc: prevent possible double free
This commit is contained in:
parent
9965a4a3a6
commit
6b8161972d
1 changed files with 12 additions and 2 deletions
|
@ -210,8 +210,18 @@ static bool nvfbc_init(void)
|
|||
static void nvfbc_stop(void)
|
||||
{
|
||||
this->stop = true;
|
||||
lgSignalEvent(this->cursorEvents[0]);
|
||||
lgSignalEvent(this->frameEvent);
|
||||
|
||||
if (this->cursorEvents[0])
|
||||
{
|
||||
lgSignalEvent(this->cursorEvents[0]);
|
||||
this->cursorEvents[0] = NULL;
|
||||
}
|
||||
|
||||
if (this->frameEvent)
|
||||
{
|
||||
lgSignalEvent(this->frameEvent);
|
||||
this->frameEvent = NULL;
|
||||
}
|
||||
|
||||
if (this->pointerThread)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue