File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1526,7 +1526,7 @@ Perl__utf8n_to_uvchr_msgs_helper(const U8 *s,
1526
1526
* separate.
1527
1527
*
1528
1528
* A convenience macro that matches either of the too-short conditions. */
1529
- # define UTF8_GOT_TOO_SHORT (UTF8_GOT_SHORT|UTF8_GOT_NON_CONTINUATION)
1529
+ #define UTF8_GOT_TOO_SHORT (UTF8_GOT_SHORT|UTF8_GOT_NON_CONTINUATION)
1530
1530
1531
1531
/* Check for overflow. The algorithm requires us to not look past the end
1532
1532
* of the current character, even if partial, so the upper limit is 's' */
@@ -1538,8 +1538,8 @@ Perl__utf8n_to_uvchr_msgs_helper(const U8 *s,
1538
1538
* point value. Simply see if it is expressible in fewer bytes. Otherwise
1539
1539
* we must look at the UTF-8 byte sequence itself to see if it is for an
1540
1540
* overlong */
1541
- if ( ( LIKELY (! possible_problems )
1542
- && UNLIKELY (expectlen > (STRLEN ) OFFUNISKIP (uv )))
1541
+ if ( ( LIKELY (! possible_problems )
1542
+ && UNLIKELY (expectlen > (STRLEN ) OFFUNISKIP (uv )))
1543
1543
|| ( UNLIKELY (possible_problems )
1544
1544
&& ( UNLIKELY (! UTF8_IS_START (* s0 ))
1545
1545
|| (UNLIKELY (0 < is_utf8_overlong (s0 , s - s0 ))))))
You can’t perform that action at this time.
0 commit comments