public inbox for git@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] dir: avoid -Wdiscarded-qualifiers in remove_path()
@ 2026-03-09  3:23 Collin Funk
  2026-03-09 14:59 ` Junio C Hamano
  0 siblings, 1 reply; 4+ messages in thread
From: Collin Funk @ 2026-03-09  3:23 UTC (permalink / raw)
  To: git
  Cc: Collin Funk, Ævar Arnfjörð Bjarmason,
	Derrick Stolee, Elijah Newren, Junio C Hamano

When building with glibc-2.43 there is the following warning:

    dir.c:3526:15: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]
     3526 |         slash = strrchr(name, '/');
          |               ^

In this case we use a non-const pointer to get the last slash of the
unwritable file name, and then use it again to write in the strdup'd
file name.

We can avoid this warning and make the code a bit more clear by using a
separate variable to access the original argument and it's strdup'd
copy.

Signed-off-by: Collin Funk <collin.funk1@gmail.com>
---
 dir.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/dir.c b/dir.c
index 026d8516a9..fcb8f6dd2a 100644
--- a/dir.c
+++ b/dir.c
@@ -3518,15 +3518,15 @@ int get_sparse_checkout_patterns(struct pattern_list *pl)
 
 int remove_path(const char *name)
 {
-	char *slash;
+	const char *last;
 
 	if (unlink(name) && !is_missing_file_error(errno))
 		return -1;
 
-	slash = strrchr(name, '/');
-	if (slash) {
+	last = strrchr(name, '/');
+	if (last) {
 		char *dirs = xstrdup(name);
-		slash = dirs + (slash - name);
+		char *slash = dirs + (last - name);
 		do {
 			*slash = '\0';
 			if (startup_info->original_cwd &&
-- 
2.53.0


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2026-03-10  0:57 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-09  3:23 [PATCH] dir: avoid -Wdiscarded-qualifiers in remove_path() Collin Funk
2026-03-09 14:59 ` Junio C Hamano
2026-03-10  0:22   ` Collin Funk
2026-03-10  0:57     ` Junio C Hamano

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox