summaryrefslogtreecommitdiff
path: root/embed.fnc
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2016-08-22 12:25:00 -0600
committerKarl Williamson <khw@cpan.org>2016-08-31 20:32:35 -0600
commit55c5b58bc5035d0aff68aee7ed884342913fd9b8 (patch)
tree3563e80b92ce2952342baec22ffec40680a74d77 /embed.fnc
parent2fe720e22e785c4e6125ac67a259c4385eb89a64 (diff)
downloadperl-55c5b58bc5035d0aff68aee7ed884342913fd9b8.tar.gz
is_utf8_string_loc() param should not be NULL
It makes no sense to call this function with a NULL parameter, as the whole point of using this function is to set what that param points to. If you don't want this, you should be using the similar function that doesn't have this parameter.
Diffstat (limited to 'embed.fnc')
-rw-r--r--embed.fnc2
1 files changed, 1 insertions, 1 deletions
diff --git a/embed.fnc b/embed.fnc
index c7906e3c9d..5630fe8d27 100644
--- a/embed.fnc
+++ b/embed.fnc
@@ -736,7 +736,7 @@ AmpdR |bool |is_ascii_string|NN const U8 *s|STRLEN len
AnpdD |STRLEN |is_utf8_char |NN const U8 *s
Abmnpd |STRLEN |is_utf8_char_buf|NN const U8 *buf|NN const U8 *buf_end
Anpd |bool |is_utf8_string |NN const U8 *s|STRLEN len
-Anpdmb |bool |is_utf8_string_loc|NN const U8 *s|STRLEN len|NULLOK const U8 **ep
+Anpdmb |bool |is_utf8_string_loc|NN const U8 *s|STRLEN len|NN const U8 **ep
Anpd |bool |is_utf8_string_loclen|NN const U8 *s|STRLEN len|NULLOK const U8 **ep|NULLOK STRLEN *el
AMpR |bool |_is_uni_FOO|const U8 classnum|const UV c
AMpR |bool |_is_utf8_FOO|const U8 classnum|NN const U8 *p