summaryrefslogtreecommitdiff
path: root/inline.h
diff options
context:
space:
mode:
authorTony Cook <tony@develop-help.com>2013-09-03 10:17:35 +1000
committerTony Cook <tony@develop-help.com>2013-09-09 15:22:18 +1000
commit41188aa0f6683329a6ebb1811827fce0a096df6e (patch)
tree2a32b38c849f9ad1074e92699426237a5ebc2ed4 /inline.h
parent788436d2421782aa270928cb9fa6214f251f6797 (diff)
downloadperl-41188aa0f6683329a6ebb1811827fce0a096df6e.tar.gz
[perl #117265] correctly handle overloaded strings
Diffstat (limited to 'inline.h')
-rw-r--r--inline.h11
1 files changed, 5 insertions, 6 deletions
diff --git a/inline.h b/inline.h
index a5742b892a..a2727f41a1 100644
--- a/inline.h
+++ b/inline.h
@@ -288,7 +288,7 @@ S_isALNUM_lazy(pTHX_ const char* p)
/* ------------------------------- perl.h ----------------------------- */
/*
-=for apidoc AiR|bool|is_safe_syscall|SV *pv|const char *what|const char *op_name
+=for apidoc AiR|bool|is_safe_syscall|const char *pv|STRLEN len|const char *what|const char *op_name
Test that the given C<pv> doesn't contain any internal NUL characters.
If it does, set C<errno> to ENOENT, optionally warn, and return FALSE.
@@ -301,21 +301,20 @@ Used by the IS_SAFE_SYSCALL() macro.
*/
PERL_STATIC_INLINE bool
-S_is_safe_syscall(pTHX_ SV *pv, const char *what, const char *op_name) {
+S_is_safe_syscall(pTHX_ const char *pv, STRLEN len, const char *what, const char *op_name) {
/* While the Windows CE API provides only UCS-16 (or UTF-16) APIs
* perl itself uses xce*() functions which accept 8-bit strings.
*/
PERL_ARGS_ASSERT_IS_SAFE_SYSCALL;
- if (SvPOK(pv) && SvCUR(pv) >= 1) {
- char *p = SvPVX(pv);
+ if (pv && len > 1) {
char *null_at;
- if (UNLIKELY((null_at = (char *)memchr(p, 0, SvCUR(pv)-1)) != NULL)) {
+ if (UNLIKELY((null_at = (char *)memchr(pv, 0, len-1)) != NULL)) {
SETERRNO(ENOENT, LIB_INVARG);
Perl_ck_warner(aTHX_ packWARN(WARN_SYSCALLS),
"Invalid \\0 character in %s for %s: %s\\0%s",
- what, op_name, p, null_at+1);
+ what, op_name, pv, null_at+1);
return FALSE;
}
}