about summary refs log tree commit diff
path: root/Completion
diff options
context:
space:
mode:
authorJacob Menke <linux.dev25@gmail.com>2020-09-22 07:09:36 +0000
committerDaniel Shahaf <d.s@daniel.shahaf.name>2020-09-22 07:10:51 +0000
commit794edac63850dfc1ffd7c971060fa7ec64dc9803 (patch)
treef8a71475a67310f01ea81f6751faed64fbb69616 /Completion
parent04bd9a44a74683ad0d83921bfb3aa0c4d5992c75 (diff)
downloadzsh-794edac63850dfc1ffd7c971060fa7ec64dc9803.tar.gz
zsh-794edac63850dfc1ffd7c971060fa7ec64dc9803.tar.xz
zsh-794edac63850dfc1ffd7c971060fa7ec64dc9803.zip
47395: _store_cache: Don't leak the variable ${_cache_dir}.
Diffstat (limited to 'Completion')
-rw-r--r--Completion/Base/Utility/_store_cache2
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/Base/Utility/_store_cache b/Completion/Base/Utility/_store_cache
index fb2ab328a..b08ff1142 100644
--- a/Completion/Base/Utility/_store_cache
+++ b/Completion/Base/Utility/_store_cache
@@ -2,7 +2,7 @@
 #
 # Storage component of completions caching layer
 
-local _cache_ident _cache_ident_dir
+local _cache_ident _cache_ident_dir _cache_dir
 _cache_ident="$1"
 
 if zstyle -t ":completion:${curcontext}:" use-cache; then