zsh-workers
 help / color / mirror / code / Atom feed
* PATCH: fix seg fault after recursive-edit
@ 2014-02-28 23:52 Oliver Kiddle
  0 siblings, 0 replies; only message in thread
From: Oliver Kiddle @ 2014-02-28 23:52 UTC (permalink / raw)
  To: Zsh workers

In a zle widget, I test $WIDGET after returning from recursive-edit (via
narrow-to-region). If I had interrupted the recursive-edit with Ctrl-C,
this results in a seg fault due to a null pointer dereference.

The following is a fix.

Oliver

diff --git a/Src/Zle/zle_params.c b/Src/Zle/zle_params.c
index a9bbf13..5845207 100644
--- a/Src/Zle/zle_params.c
+++ b/Src/Zle/zle_params.c
@@ -363,7 +363,7 @@ get_prebuffer(UNUSED(Param pm))
 static char *
 get_widget(UNUSED(Param pm))
 {
-    return bindk->nam;
+    return bindk ? bindk->nam : "";
 }
 
 /**/


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2014-02-28 23:59 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-02-28 23:52 PATCH: fix seg fault after recursive-edit Oliver Kiddle

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).