Passing in values to foreign-lambda* for UTF-8 validation instead of
using global variables.
This commit is contained in:
@@ -291,10 +291,8 @@
|
|||||||
; Try to validate as an ascii string first. Its essentially
|
; Try to validate as an ascii string first. Its essentially
|
||||||
; free, doesn't generate garbage and is many, many times
|
; free, doesn't generate garbage and is many, many times
|
||||||
; faster than the general purpose validator.
|
; faster than the general purpose validator.
|
||||||
(define-external ws_utlen int len)
|
|
||||||
(define-external ws_uts scheme-pointer s)
|
|
||||||
(= 1
|
(= 1
|
||||||
((foreign-lambda* int ()
|
((foreign-lambda* int ((size_t ws_utlen) (scheme-pointer ws_uts))
|
||||||
"
|
"
|
||||||
if (ws_utlen > UINT_MAX) { return -1; }
|
if (ws_utlen > UINT_MAX) { return -1; }
|
||||||
|
|
||||||
@@ -308,7 +306,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
C_return(1);
|
C_return(1);
|
||||||
"))))
|
") len s)))
|
||||||
(parse utf8-string (->parser-input s))))
|
(parse utf8-string (->parser-input s))))
|
||||||
|
|
||||||
(define (close-code->integer s)
|
(define (close-code->integer s)
|
||||||
|
|||||||
Reference in New Issue
Block a user