From: bugzilla-daemon@kernel.org
To: linux-man@vger.kernel.org
Subject: [Bug 221533] New: strstr/c23/constness
Date: Sat, 16 May 2026 16:47:42 +0000 [thread overview]
Message-ID: <bug-221533-11311@https.bugzilla.kernel.org/> (raw)
https://bugzilla.kernel.org/show_bug.cgi?id=221533
Bug ID: 221533
Summary: strstr/c23/constness
Product: Documentation
Version: unspecified
Hardware: All
OS: Linux
Status: NEW
Severity: normal
Priority: P3
Component: man-pages
Assignee: documentation_man-pages@kernel-bugs.osdl.org
Reporter: linux@treblig.org
Regression: No
Hi,
In C23 strstr can return a const char* if the first parameter is a const
char*; this is also true of a bunch of the other routines.
I'm not really sure how this should be documented, I guess two entries for
each function with some note saying it's only C23 and later?
See:
https://sourceware.org/cgit/glibc/commit/string/string.h?id=cd748a63ab1a7ae846175c532a3daab341c62690
for the glibc change that implemented it.
It can break some existing code, e.g. something like:
int foo(const char *a)
{
char *bar = strstr(a, "frog");
}
gives:
t.c:9:16: warning: initialization discards ‘const’ qualifier from pointer
target type [-Wdiscarded-qualifiers]
9 | char *bar = strstr(a, "frog");
| ^~~~~~
--
You may reply to this email to add a comment.
You are receiving this mail because:
You are watching the assignee of the bug.
next reply other threads:[~2026-05-16 16:47 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-05-16 16:47 bugzilla-daemon [this message]
2026-05-16 16:57 ` [Bug 221533] strstr/c23/constness bugzilla-daemon
2026-05-16 17:18 ` bugzilla-daemon
2026-05-17 7:36 ` bugzilla-daemon
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=bug-221533-11311@https.bugzilla.kernel.org/ \
--to=bugzilla-daemon@kernel.org \
--cc=linux-man@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox