Fix Gtimer stop bug.

ugfx_release_2.6
inmarket 2015-12-24 09:54:57 +10:00
parent 1971d889dc
commit 4b891ebc04
1 changed files with 2 additions and 2 deletions

View File

@ -76,7 +76,7 @@ static DECLARE_THREAD_FUNCTION(GTimerThreadHandler, arg) {
} else {
// No - get us off the timers list
if (pt->next == pt->prev)
if (pt->next == pt)
pTimerHead = 0;
else {
pt->next->prev = pt->prev;
@ -148,7 +148,7 @@ void gtimerStart(GTimer *pt, GTimerFunction fn, void *param, bool_t periodic, de
// Is this already scheduled?
if (pt->flags & GTIMER_FLG_SCHEDULED) {
// Cancel it!
if (pt->next == pt->prev)
if (pt->next == pt)
pTimerHead = 0;
else {
pt->next->prev = pt->prev;