On Tue, 18 Sep 2018 11:51:26 -0600, "Todd C. Miller" wrote:

> To use strchr(3) here we either need mask the char value with 0xff
> or figure out why asyntax() is calling any() with a char value of
> -32768.

The -32768 comes from a Char with the QUOTE bit set.
This gets sign-extended when cast to an int for any().
Masking c with TRIM to gets rid of the funny value but
doesn't fix the underlying issue.

 - todd

Reply via email to