From ced74a064d7d63aafd392373a8e1fc08979353b4 Mon Sep 17 00:00:00 2001 From: Eero Nurkkala Date: Mon, 27 Dec 2021 15:26:14 +0200 Subject: [PATCH] fsutils/ipcfg: fix debugassert cppcheck reports the following error: fsutils/ipcfg/ipcfg_binary.c:332:15: error: Uninitialized variable: fd [uninitvar] DEBUGASSERT(fd >= 0 && ipv6cfg != NULL); Update the DEBUGASSERT() to match that of ipcfg_read_binary_ipv4(). fd is uninitilized and doesn't need to be checked here. Signed-off-by: Eero Nurkkala --- fsutils/ipcfg/ipcfg_binary.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fsutils/ipcfg/ipcfg_binary.c b/fsutils/ipcfg/ipcfg_binary.c index 85baae3e0..6b7bb968c 100644 --- a/fsutils/ipcfg/ipcfg_binary.c +++ b/fsutils/ipcfg/ipcfg_binary.c @@ -329,7 +329,7 @@ int ipcfg_read_binary_ipv6(FAR const char *path, int fd; int ret; - DEBUGASSERT(fd >= 0 && ipv6cfg != NULL); + DEBUGASSERT(path != NULL && ipv6cfg != NULL); /* Open the file for reading */