about summary refs log tree commit diff
path: root/ChangeLog
diff options
context:
space:
mode:
authorPeter Stephenson <p.stephenson@samsung.com>2019-07-15 09:44:47 +0100
committerPeter Stephenson <p.stephenson@samsung.com>2019-07-15 09:44:47 +0100
commit8cbbc04d97d1126d17060353a8cf85de44cb3053 (patch)
tree7bc61052257f73e77dab8905fab8a53b4d7d1554 /ChangeLog
parent09385d38ad51477dcc3a20ace67ec50de5fb262e (diff)
downloadzsh-8cbbc04d97d1126d17060353a8cf85de44cb3053.tar.gz
zsh-8cbbc04d97d1126d17060353a8cf85de44cb3053.tar.xz
zsh-8cbbc04d97d1126d17060353a8cf85de44cb3053.zip
44509: Prevent crash with modified path / PATH combination.
Crash came from "fn() { typeset -U path=($path); unset PATH; }".

Note PATH unset is global as only path was made local.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog7
1 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 7b06ec095..c1573fa04 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,11 @@
+2019-07-15  Peter Stephenson  <p.stephenson@samsung.com>
+
+	* 44509: Src/params.c: Prevent crash with modified PATH / path
+	combination in function.
+
 2019-07-10  Peter Stephenson  <p.stephenson@samsung.com>
 
-	* 44305: Functions/Chpwd/zsh_directory_name_generic: Longest
+	* 44505: Functions/Chpwd/zsh_directory_name_generic: Longest
 	prefix matching was broken if there were suffixes indicating
 	further handling.