[common] linux/time: fix memory leak

This commit is contained in:
Geoffrey McRae 2022-01-14 14:18:58 +11:00
parent f635077a2c
commit 9c49dc6efd

View File

@ -148,5 +148,7 @@ void lgTimerDestroy(LGTimer * timer)
return;
ll_removeData(l_ts.timers, timer);
free(timer);
destroyTimerThread();
}