summaryrefslogtreecommitdiff
path: root/NEWS
diff options
context:
space:
mode:
authorPieter van den Ham <p.e.vandenham@gmail.com>2020-08-05 20:21:26 +0200
committerNikita Popov <nikita.ppv@gmail.com>2020-08-06 12:02:54 +0200
commit06ade15528fa64acd9dea92b072a985793d1dcc1 (patch)
treea69fe3942c9f615466e187ea7bb1db79ac425ddf /NEWS
parent6a1bd57df5c6c92af3dfb42695de17be45d02d1e (diff)
downloadphp-git-06ade15528fa64acd9dea92b072a985793d1dcc1.tar.gz
Fix #79934: CRLF-only line in heredoc causes parsing error
Fixes the function `next_newline()` in zend_language_scanner.l. The function now correctly returns a newline_len of 2 for "\r\n". Closes GH-5944.
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index 172a781622..70e9fc3206 100644
--- a/NEWS
+++ b/NEWS
@@ -9,6 +9,8 @@ PHP NEWS
. Fixed bug #79895 (PHP_CHECK_GCC_ARG does not allow flags with equal sign).
(Santiago M. Mola)
. Fixed bug #79919 (Stack use-after-scope in define()). (cmb)
+ . Fixed bug #79934 (CRLF-only line in heredoc causes parsing error).
+ (Pieter van den Ham)
- LDAP:
. Fixed memory leaks. (ptomulik)