summaryrefslogtreecommitdiff
path: root/utf8.c
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2008-01-03 17:42:27 +0000
committerNicholas Clark <nick@ccl4.org>2008-01-03 17:42:27 +0000
commit84bafc024a74c819ac3d2b4406253dbe983e6502 (patch)
tree078faf96a8959e8d6ede5d541caf7896de32c569 /utf8.c
parent59cd0e26eb6c10499b25d783562357dd68cc16f2 (diff)
downloadperl-84bafc024a74c819ac3d2b4406253dbe983e6502.tar.gz
Add newSVpvs_flags() as a wrapper to newSVpvn_flags(), and rework
sv_2mortal(newSVpvs(...)) constructions to use it. p4raw-id: //depot/perl@32819
Diffstat (limited to 'utf8.c')
-rw-r--r--utf8.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/utf8.c b/utf8.c
index efd894dbda..e22fe98498 100644
--- a/utf8.c
+++ b/utf8.c
@@ -536,7 +536,7 @@ malformed:
}
if (dowarn) {
- SV* const sv = sv_2mortal(newSVpvs("Malformed UTF-8 character "));
+ SV* const sv = newSVpvs_flags("Malformed UTF-8 character ", SVs_TEMP);
switch (warning) {
case 0: /* Intentionally empty. */ break;