*) copy regex captures $1, $2, etc.
*) SV flags debug logging
diff --git a/src/http/modules/perl/nginx.xs b/src/http/modules/perl/nginx.xs
index 65ec69c..45b03ef 100644
--- a/src/http/modules/perl/nginx.xs
+++ b/src/http/modules/perl/nginx.xs
@@ -42,8 +42,12 @@
s->len = len;
- if (SvREADONLY(sv)) {
+ if (SvREADONLY(sv) && SvPOK(sv)) {
s->data = p;
+
+ ngx_log_debug2(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
+ "perl sv2str: %08XD \"%V\"", sv->sv_flags, s);
+
return NGX_OK;
}
@@ -54,6 +58,9 @@
ngx_memcpy(s->data, p, len);
+ ngx_log_debug2(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
+ "perl sv2str: %08XD \"%V\"", sv->sv_flags, s);
+
return NGX_OK;
}
@@ -532,7 +539,7 @@
sv = SvRV(sv);
}
- if (SvREADONLY(sv)) {
+ if (SvREADONLY(sv) && SvPOK(sv)) {
p = (u_char *) SvPV(sv, len);