Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dump.c
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ Perl_pv_escape( pTHX_ SV *dsv, char const * const str,

for ( ; pv < end ; pv += readsize ) {
const UV u = (isuni) /* Here known to be valid; checked just above */
? utf8_to_uv_or_die((U8*)pv, (U8*) end, &readsize)
? valid_utf8_to_uv( (U8*) pv, &readsize)
: (U8) *pv;
const U8 c = (U8)u;
const char *source_buf = octbuf;
Expand Down
Loading