summaryrefslogtreecommitdiffstats
path: root/typemap
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2010-11-14 12:26:16 -0600
committerJesse Luehrs <doy@tozt.net>2010-11-14 12:26:16 -0600
commit64b792116c00d04d1e27f3dbf68e5bca00b30ec6 (patch)
tree81aa74692728c400ea98fdf88c407dc9f4be3f0b /typemap
parent26f802f794c6c5231120eedf995e4f45648fbadc (diff)
downloadpackage-stash-xs-64b792116c00d04d1e27f3dbf68e5bca00b30ec6.tar.gz
package-stash-xs-64b792116c00d04d1e27f3dbf68e5bca00b30ec6.zip
get rid of strlens
Diffstat (limited to 'typemap')
-rw-r--r--typemap2
1 files changed, 1 insertions, 1 deletions
diff --git a/typemap b/typemap
index 3ea935e..8fd59c8 100644
--- a/typemap
+++ b/typemap
@@ -5,7 +5,7 @@ vartype_t T_VARTYPE
INPUT
T_VARSPEC
if (SvPOK($arg))
- _deconstruct_variable_name(SvPV_nolen($arg), &$var);
+ _deconstruct_variable_name($arg, &$var);
else if (SvROK($arg) && SvTYPE(SvRV($arg)) == SVt_PVHV)
_deconstruct_variable_hash((HV*)SvRV($arg), &$var);
else