Zsh Mailing List Archive
Messages sorted by: Reverse Date, Date, Thread, Author

Re: ZSH 4.1.1 Coredump bug



Sorry, my mistake.

When I did a "gdb ./zsh ../core" I noticed it crashed in:

(gdb) bt
#0 0x401eed00 in compctlread () from /usr/local/lib/zsh/4.1.1/zsh/compctl.so

And so I realised that compctl is a separate module and not part of the zsh executable. (Didn't know this before)

I updated the module, and voilla! It worked.
Sorry for my last mail.

Regards,
Marius.


On 15 Feb 2004, at 14:48, Oliver Kiddle wrote:

Marius van Wyk wrote:
[marius@boa-constructor /home/marius]$ zsh -f
boa-constructor% compctl -f -x 'p[2]' -s "`/bin/ls /bin`" --open
Segmentation fault (core dumped)

This should fix it.

Index: Src/Zle/compctl.c
===================================================================
RCS file: /cvsroot/zsh/zsh/Src/Zle/compctl.c,v
retrieving revision 1.16
diff -u -r1.16 compctl.c
--- Src/Zle/compctl.c	13 Nov 2003 14:34:38 -0000	1.16
+++ Src/Zle/compctl.c	15 Feb 2004 12:29:35 -0000
@@ -857,7 +857,7 @@
 		}
 		break;
 	    default:
-		if (!first && (**argv == '-' || **argv == '+'))
+		if (!first && (**argv == '-' || **argv == '+') && !argv[0][1])
 		    (*argv)--, argv--, ready = 1;
 		else {
 		    zwarnnam(name, "bad option: -%c", NULL, **argv);

--
Director,
Tangible Business Software



Messages sorted by: Reverse Date, Date, Thread, Author