From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server-vie001.gnuweeb.org X-Spam-Level: X-Spam-Status: No, score=-1.2 required=5.0 tests=ALL_TRUSTED,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,URIBL_ZEN_BLOCKED_OPENDNS autolearn=ham autolearn_force=no version=3.4.6 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gnuweeb.org; s=new2025; t=1755724484; bh=JOSkfF8vRZsMA4o7VdO7yVAIcRSH0/3sbRlzRcP/u0I=; h=From:To:Cc:Subject:Date:Message-Id:MIME-Version: Content-Transfer-Encoding:Message-ID:Date:From:Reply-To:Subject:To: Cc:In-Reply-To:References:Resent-Date:Resent-From:Resent-To: Resent-Cc:User-Agent:Content-Type:Content-Transfer-Encoding; b=KO04edWVKV2zkyCwx4tbvD87RpPOmSxv+H+fSE5IynJunX+ACOi5rptwmuVOkGdbh 9Wd4CMIr/K4ozd6vWm9gyldrsznqUHMlZt2ePDSlTDoaSEU5P+EQFRVm/CRoQboZid aWY+ltqIxCnP1RCNpCf0hR09maYdRhggOyV4KtGrnch1gsMTx8pTONIrfacFfXsaZL 4QoZ4jVAssEia82H3FALsWB39xm2giSHnKXB3nj1h5F4ak81ySX/D+550E0j80LHG7 a/HiN730W4BqgS5lqZ7HmtwUyYJVKv81ngRehFVbEnF7A+Y6Z6Hk9EQCDkKilekb2p AsHF0e/7sscqw== Received: from integral2.. (unknown [103.216.223.55]) by server-vie001.gnuweeb.org (Postfix) with ESMTPSA id 35F833127F7F; Wed, 20 Aug 2025 21:14:41 +0000 (UTC) From: Ammar Faizi To: Steven Rostedt Cc: Ammar Faizi , Linux Trace Devel Mailing List , GNU/Weeb Mailing List , Alviro Iskandar Setiawan Subject: [PATCH 0/2] ccli: Two small fixes for ccli Date: Thu, 21 Aug 2025 04:14:32 +0700 Message-Id: <20250820211434.1857859-1-ammarfaizi2@gnuweeb.org> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: Hi Steve, Alviro and I found two small issues in the ccli code. The first one is a warning about uninitialized variable in the cache code. The second one is an optimization issue found when clang warns about unused return value of strlen() calls. Fix them. Ammar Faizi (2): ccli: cache: Fix -Wuninitialized warning ccli: commands: Fix optimized `strlen()` calls src/cache.c | 3 +-- src/ccli-local.h | 1 + src/commands.c | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) base-commit: 418ad6a341a5ab6c21be666565d62a878aa3bd18 -- Ammar Faizi