]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/commit
regcomp: use unsigned char when testing for escapes
authorChristos Zoulas <christos@NetBSD.org>
Wed, 30 Aug 2023 20:37:24 +0000 (20:37 +0000)
committerKyle Evans <kevans@FreeBSD.org>
Sat, 30 Sep 2023 01:41:23 +0000 (20:41 -0500)
commitac695744e2cfb461a64018276fb94999fb0cad9c
treeb10b849cf706da1935bc638b18a2b76aa7d0557d
parent8a331a855ed8100ea5ef12ac85c23b80b37f9371
regcomp: use unsigned char when testing for escapes

- cast GETNEXT to unsigned where it is being promoted to int to prevent
  sign-extension (really it would have been better for PEEK*() and
  GETNEXT() to return unsigned char; this would have removed a ton of
  (uch) casts, but it is too intrusive for now).
- fix an isalpha that should have been iswalpha

PR: 264275, 274032
Reviewed by: kevans, eugen (previous version)
Obtained from: NetBSD

(cherry picked from commit 3fb80f1476c7776f04ba7ef6d08397cef6abcfb0)
lib/libc/regex/regcomp.c