Skip to content

Commit

Permalink
Fix the fix for #72403 on nl2br
Browse files Browse the repository at this point in the history
  • Loading branch information
smalyshev committed Jun 27, 2016
1 parent 1556191 commit 25bd11c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext/standard/string.c
Original file line number Diff line number Diff line change
Expand Up @@ -4267,7 +4267,7 @@ PHP_FUNCTION(nl2br)
{
/* in brief this inserts <br /> or <br> before matched regexp \n\r?|\r\n? */
char *tmp, *str;
int new_length;
size_t new_length;
char *end, *target;
int repl_cnt = 0;
int str_len;
Expand Down

0 comments on commit 25bd11c

Please sign in to comment.