Fix error message, use a faster regexp test to search for NULs, forbid empty byte strings.
original commit: fca0ed2111300dcbdb3825bdd319ae284d4ac22f
This commit is contained in:
parent
5b012ac355
commit
5100aad081
|
@ -101,9 +101,10 @@
|
|||
[else
|
||||
(for ([s (in-list args)])
|
||||
(unless (or (path-string? s)
|
||||
(and (bytes? s)
|
||||
(for/and ([b (in-bytes s)]) (positive? b))))
|
||||
(raise-type-error who "path, string, or byte string (no with nuls)" s)))])
|
||||
(and (bytes? s) ((bytes-length s) . > . 0)
|
||||
(not (regexp-match? #rx"\0" s))))
|
||||
(raise-type-error who "path, string, or byte string (without NULs)"
|
||||
s)))])
|
||||
args)
|
||||
|
||||
(define (check-command who str)
|
||||
|
|
Loading…
Reference in New Issue
Block a user