From bddcd0052256800a3cc836dff376355ba6c5d593 Mon Sep 17 00:00:00 2001 From: James Jones Date: Sat, 23 Jul 2022 06:47:41 -0500 Subject: [PATCH] Placate coverity re fixed size destination libpath (CID #720444) (#4625) libpath has size PATH_MAX, so program should fit. --- scripts/jlibtool.c | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/jlibtool.c b/scripts/jlibtool.c index 3381d705c84..c4a7e9e9681 100644 --- a/scripts/jlibtool.c +++ b/scripts/jlibtool.c @@ -2668,6 +2668,7 @@ static int run_mode(command_t *cmd) /* * jlibtool is in $(BUILD_DIR)/make/jlibtool */ + /* coverity[fixed_size_dest] */ strcpy(libpath, program); /* -- 2.47.3