public inbox for gcc@gcc.gnu.org
 help / color / mirror / Atom feed
From: Jonathan Wakely <jwakely.gcc@gmail.com>
To: Andrea Monaco <andrea.monaco@autistici.org>
Cc: "gcc@gcc.gnu.org" <gcc@gcc.gnu.org>
Subject: Re: No type checking in ctype builtins
Date: Wed, 27 Apr 2022 17:19:21 +0100	[thread overview]
Message-ID: <CAH6eHdRN8a09+ivse7JRPDSG73hRFUbWnofLpwTJ9+Gd+BzdMQ@mail.gmail.com> (raw)
In-Reply-To: <87sfpy1r5s.fsf@autistici.org>

On Wed, 27 Apr 2022 at 16:29, Andrea Monaco via Gcc <gcc@gcc.gnu.org> wrote:
>
>
> This program
>
>   #include <ctype.h>
>
>   int main ()
>   {
>     char *s;
>     isspace (s);
>   }
>
> compiles with no warning in gcc 8.3.0, even though there's a type
> mistake; the correct call would be isspace (*s).

N.B. The correct call would be isspace((unsigned char)*s) because
isspace has undefined behaviour if you pass it a char with a negative
value.

It would be nice if GCC warned about *that*.

  parent reply	other threads:[~2022-04-27 16:19 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-04-27 15:29 Andrea Monaco
2022-04-27 15:54 ` Andreas Schwab
2022-04-27 18:07   ` Andrea Monaco
2022-04-28 11:13   ` Florian Weimer
2022-04-27 16:19 ` Jonathan Wakely [this message]
2022-04-28 12:02   ` Eric Gallager

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=CAH6eHdRN8a09+ivse7JRPDSG73hRFUbWnofLpwTJ9+Gd+BzdMQ@mail.gmail.com \
    --to=jwakely.gcc@gmail.com \
    --cc=andrea.monaco@autistici.org \
    --cc=gcc@gcc.gnu.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;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).