From 2caeead612c65c3574ece7071c3df2dec47dc28d Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Mon, 10 Nov 2014 18:15:26 -0600 Subject: [PATCH] Fix an important bug in the watchdog creation logic --- sched/wdog/wd_create.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sched/wdog/wd_create.c b/sched/wdog/wd_create.c index 459f0a68aaf..2c04724a404 100644 --- a/sched/wdog/wd_create.c +++ b/sched/wdog/wd_create.c @@ -107,7 +107,7 @@ WDOG_ID wd_create (void) * the head of the free list. */ - if (g_wdnfree > CONFIG_WDOG_INTRESERVE || !up_interrupt_context()) + if (g_wdnfree > CONFIG_WDOG_INTRESERVE || up_interrupt_context()) { /* Remove the watchdog timer from the free list and decrement the * count of free timers all with interrupts disabled.