mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-10 08:38:20 +00:00
[host] nvfbc: prevent possible double free
This commit is contained in:
parent
9965a4a3a6
commit
6b8161972d
@ -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 New Issue
Block a user