zsh-workers
 help / color / mirror / code / Atom feed
* "double free or corruption (out)" in zsh correct
@ 2021-07-21 13:01 Henning Reich
  2021-07-21 17:03 ` Bart Schaefer
  0 siblings, 1 reply; 3+ messages in thread
From: Henning Reich @ 2021-07-21 13:01 UTC (permalink / raw)
  To: zsh-workers

Hi,

you probably already know but it seems there is a bug in the correct
function (or is this not part of zsh?).
To reproduce see the steps below. Tested on arch and ubuntu 20.04.

Thanks a lot
Henning

--

henning@homeoffice ~ % zsh --version
zsh 5.8 (x86_64-pc-linux-gnu)
henning@homeoffice ~ % A=$(PWD)
zsh: correct 'PWD' to 'pwd' [nyae]? y
double free or corruption (out)


Achtung: Das Programm „/bin/zsh“ ist abgestürzt.


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: "double free or corruption (out)" in zsh correct
  2021-07-21 13:01 "double free or corruption (out)" in zsh correct Henning Reich
@ 2021-07-21 17:03 ` Bart Schaefer
  2021-07-21 20:18   ` Peter Stephenson
  0 siblings, 1 reply; 3+ messages in thread
From: Bart Schaefer @ 2021-07-21 17:03 UTC (permalink / raw)
  To: Zsh hackers list

On Wed, Jul 21, 2021 at 6:03 AM Henning Reich <henning.reich@gmail.com> wrote:
>
> you probably already know but it seems there is a bug in the correct
> function (or is this not part of zsh?).

I can reproduce:

ubuntu% setopt correct
ubuntu% A=$(PWD)
zsh: correct 'PWD' to 'pwd' [nyae]? y
 hist.c:1710: BUG: hwget() called in middle of word
zsh: segmentation fault (core dumped)  Src/zsh -f


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: "double free or corruption (out)" in zsh correct
  2021-07-21 17:03 ` Bart Schaefer
@ 2021-07-21 20:18   ` Peter Stephenson
  0 siblings, 0 replies; 3+ messages in thread
From: Peter Stephenson @ 2021-07-21 20:18 UTC (permalink / raw)
  To: zsh-workers

On Wed, 2021-07-21 at 10:03 -0700, Bart Schaefer wrote:
> On Wed, Jul 21, 2021 at 6:03 AM Henning Reich <henning.reich@gmail.com> wrote:
> > 
> > you probably already know but it seems there is a bug in the correct
> > function (or is this not part of zsh?).
> 
> I can reproduce:
> 
> ubuntu% setopt correct
> ubuntu% A=$(PWD)
> zsh: correct 'PWD' to 'pwd' [nyae]? y
>  hist.c:1710: BUG: hwget() called in middle of word
> zsh: segmentation fault (core dumped)  Src/zsh -f

We don't currently have the tools to do the history replacement within the
recursive analysis of the $(...), which doesn't maintain history with all
the detail of the main command line.  It's probably better just to turn
it off there for now.  This means the word seen is A=$(PWD) so it
doesn't get corrected.  Anything more is more work.

pws

diff --git a/Src/hist.c b/Src/hist.c
index 42cae030c..6ac581fda 100644
--- a/Src/hist.c
+++ b/Src/hist.c
@@ -339,6 +339,13 @@ hist_in_word(int yesno)
 	histactive &= ~HA_INWORD;
 }
 
+/**/
+int
+hist_is_in_word(void)
+{
+    return (histactive & HA_INWORD) ? 1 : 0;
+}
+
 /* add a character to the current history word */
 
 static void
diff --git a/Src/lex.c b/Src/lex.c
index 37fcec3e2..ece02659e 100644
--- a/Src/lex.c
+++ b/Src/lex.c
@@ -1889,6 +1889,7 @@ exalias(void)
     hwend();
     if (interact && isset(SHINSTDIN) && !strin && incasepat <= 0 &&
 	tok == STRING && !nocorrect && !(inbufflags & INP_ALIAS) &&
+	!hist_is_in_word()  &&
 	(isset(CORRECTALL) || (isset(CORRECT) && incmdpos)))
 	spckword(&tokstr, 1, incmdpos, 1);
 




^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-07-21 20:19 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-21 13:01 "double free or corruption (out)" in zsh correct Henning Reich
2021-07-21 17:03 ` Bart Schaefer
2021-07-21 20:18   ` Peter Stephenson

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).