diff options
| author | Peter Stephenson <p.stephenson@samsung.com> | 2018-10-08 10:10:42 +0100 |
|---|---|---|
| committer | Peter Stephenson <p.stephenson@samsung.com> | 2018-10-08 10:10:42 +0100 |
| commit | f99f7dca7552d21782354f675c0741896c9785f1 (patch) | |
| tree | f58dbc43d86c53b5a6f5cb3513214d22e8c0368c /Src/Modules/db_gdbm.c | |
| parent | 43587: vcs_info git: In 'git rebase -i', when computing subjects of applied-p... (diff) | |
| download | zsh-f99f7dca7552d21782354f675c0741896c9785f1.tar zsh-f99f7dca7552d21782354f675c0741896c9785f1.tar.gz zsh-f99f7dca7552d21782354f675c0741896c9785f1.tar.bz2 zsh-f99f7dca7552d21782354f675c0741896c9785f1.tar.lz zsh-f99f7dca7552d21782354f675c0741896c9785f1.tar.xz zsh-f99f7dca7552d21782354f675c0741896c9785f1.tar.zst zsh-f99f7dca7552d21782354f675c0741896c9785f1.zip | |
43616: Various parameter setting and display fixes.
Mostly to do with typeset -p and tied variables and their interaction.
Some general tied variable fixes.
Diffstat (limited to 'Src/Modules/db_gdbm.c')
| -rw-r--r-- | Src/Modules/db_gdbm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/Modules/db_gdbm.c b/Src/Modules/db_gdbm.c index ed702b912..12dd839cf 100644 --- a/Src/Modules/db_gdbm.c +++ b/Src/Modules/db_gdbm.c @@ -809,7 +809,7 @@ myfreeparamnode(HashNode hn) zsfree(pm->node.nam); /* If this variable was tied by the user, ename was ztrdup'd */ - if (pm->node.flags & PM_TIED && pm->ename) { + if (!(pm->node.flags & PM_SPECIAL) && pm->ename) { zsfree(pm->ename); pm->ename = NULL; } |
