From 7a76b2d90f4a4908bd4d15adef5b24ee083ab8a2 Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Sat, 3 Jan 2015 16:08:00 +0000 Subject: [PATCH] str.c: Remove pointless initialization. The variable p is initialized to a different value a few lines later and the value set in the definition is not used in between. Found by cppcheck. --- str.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/str.c b/str.c index d6c768d..df706ef 100644 --- a/str.c +++ b/str.c @@ -242,7 +242,7 @@ __must_check __malloc char *dss_logname(void) */ unsigned split_args(char *args, char *** const argv_ptr, const char *delim) { - char *p = args; + char *p; char **argv; size_t n = 0, i, j; -- 2.39.2