From d9752ca196853fa17d9b58e496f8c3668a9bc099 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Mon, 18 Oct 2021 11:26:58 +0200 Subject: [PATCH] watchdog: fix fd validity check --- src/shared/watchdog.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared/watchdog.c b/src/shared/watchdog.c index 4317d90b24d..3f4c72826db 100644 --- a/src/shared/watchdog.c +++ b/src/shared/watchdog.c @@ -42,7 +42,7 @@ static int watchdog_set_enable(bool enable) { static int watchdog_get_timeout(void) { int sec = 0; - assert(watchdog_fd > 0); + assert(watchdog_fd >= 0); if (ioctl(watchdog_fd, WDIOC_GETTIMEOUT, &sec) < 0) return -errno; -- 2.47.3