Skip to content

Commit

Permalink
Merge branch 'PHP-5.5' into PHP-5.6
Browse files Browse the repository at this point in the history
* PHP-5.5:
  Fix the fix for #72403 on nl2br
  5.5.38 now

Conflicts:
	configure.in
	main/php_version.h
  • Loading branch information
smalyshev committed Jun 27, 2016
2 parents 1314db7 + 25bd11c commit b8487b6
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 @@ -4265,7 +4265,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 b8487b6

Please sign in to comment.