* [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* Re: [PATCH] dir: avoid -Wdiscarded-qualifiers in remove_path()
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
0 siblings, 1 reply; 4+ messages in thread
From: Junio C Hamano @ 2026-03-09 14:59 UTC (permalink / raw)
To: Collin Funk
Cc: git, Ævar Arnfjörð Bjarmason, Derrick Stolee,
Elijah Newren
Collin Funk <collin.funk1@gmail.com> writes:
> 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.
"it's" -> "its", if I am reading the above correctly?
>
> Signed-off-by: Collin Funk <collin.funk1@gmail.com>
> ---
> dir.c | 8 ++++----
> 1 file changed, 4 insertions(+), 4 deletions(-)
The changes make sense. Thanks.
> 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 &&
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH] dir: avoid -Wdiscarded-qualifiers in remove_path()
2026-03-09 14:59 ` Junio C Hamano
@ 2026-03-10 0:22 ` Collin Funk
2026-03-10 0:57 ` Junio C Hamano
0 siblings, 1 reply; 4+ messages in thread
From: Collin Funk @ 2026-03-10 0:22 UTC (permalink / raw)
To: Junio C Hamano
Cc: git, Ævar Arnfjörð Bjarmason, Derrick Stolee,
Elijah Newren
Junio C Hamano <gitster@pobox.com> writes:
> Collin Funk <collin.funk1@gmail.com> writes:
>
>> 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.
>
> "it's" -> "its", if I am reading the above correctly?
Yep, my mistake. Assuming you can fix that locally?
Thanks,
Collin
^ permalink raw reply [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