summaryrefslogtreecommitdiff
path: root/debian/patches/fix-segfault-in-compinit-get_cvdef
diff options
context:
space:
mode:
authorAxel Beckert <abe@deuxchevaux.org>2013-11-07 15:02:53 +0100
committerAxel Beckert <abe@deuxchevaux.org>2013-11-07 15:02:53 +0100
commitb95cf81b2aa59d41cebcee34359a35b562b86f11 (patch)
tree90e0b592336c4f9b56595b962be411dafa4478ab /debian/patches/fix-segfault-in-compinit-get_cvdef
parentd799ac78a744a5359563af55b4dee9e91255a1dc (diff)
downloadzsh-b95cf81b2aa59d41cebcee34359a35b562b86f11.tar.gz
zsh-b95cf81b2aa59d41cebcee34359a35b562b86f11.zip
Remove patches applied upstream
Diffstat (limited to 'debian/patches/fix-segfault-in-compinit-get_cvdef')
-rw-r--r--debian/patches/fix-segfault-in-compinit-get_cvdef19
1 files changed, 0 insertions, 19 deletions
diff --git a/debian/patches/fix-segfault-in-compinit-get_cvdef b/debian/patches/fix-segfault-in-compinit-get_cvdef
deleted file mode 100644
index a43ea5be7..000000000
--- a/debian/patches/fix-segfault-in-compinit-get_cvdef
+++ /dev/null
@@ -1,19 +0,0 @@
-Description: Fixes segfault on "task <Tab><Tab>"
-Bug: http://www.zsh.org/mla/workers/2013/msg00772.html
-Forwarded: http://www.zsh.org/mla/workers/2013/msg00790.html
-Author: Axel Beckert <abe@debian.org>
-Applied-Upstream: http://sourceforge.net/p/zsh/code/ci/844e569b632fc032576edc039f793be47fde724e/
-
-Index: zsh/Src/Zle/computil.c
-===================================================================
---- zsh.orig/Src/Zle/computil.c 2013-09-18 23:09:08.000000000 +0200
-+++ zsh/Src/Zle/computil.c 2013-09-18 23:28:55.000000000 +0200
-@@ -2992,7 +2992,7 @@
- return *p;
- } else if (!min || !*p || (*p)->lastt < (*min)->lastt)
- min = p;
-- if (i)
-+ if (i > 0)
- min = p;
- if ((new = parse_cvdef(nam, args))) {
- freecvdef(*min);