http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50888
Mark Wielaard <mark at gcc dot gnu.org> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |green at gcc dot gnu.org --- Comment #2 from Mark Wielaard <mark at gcc dot gnu.org> 2011-10-27 18:53:35 UTC --- (In reply to comment #0) > or replace use of isspace (c) > with memchr (" \t\n\r\v", c, 5) != NULL (the standard POSIX "C" locale isspace > characters), or use safe-ctype, etc. I think that is the best solution, or even only check for a literal space. This code is only used to "parse" properties provided by the GCJ_PROPERTIES environment variable. Which is a gcj extension. It was added in 1999 and it hasn't been changed since then. http://gcc.gnu.org/ml/java-patches/1999-q4/msg00014.html Any opinions Anthony?