GNU bug report logs - #6378
all-completions Segfault

Previous Next

Package: emacs;

Reported by: Nathan Weizenbaum <nex342 <at> gmail.com>

Date: Tue, 8 Jun 2010 15:48:02 UTC

Severity: normal

Done: Juanma Barranquero <lekktu <at> gmail.com>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 6378 in the body.
You can then email your comments to 6378 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to owner <at> debbugs.gnu.org, bug-gnu-emacs <at> gnu.org:
bug#6378; Package emacs. (Tue, 08 Jun 2010 15:48:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Nathan Weizenbaum <nex342 <at> gmail.com>:
New bug report received and forwarded. Copy sent to bug-gnu-emacs <at> gnu.org. (Tue, 08 Jun 2010 15:48:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Nathan Weizenbaum <nex342 <at> gmail.com>
To: bug-gnu-emacs <at> gnu.org
Subject: all-completions Segfault
Date: Tue, 8 Jun 2010 08:46:47 -0700
[Message part 1 (text/plain, inline)]
This segfaults me on GNU Emacs 24.0.50.1 (i686-pc-linux-gnu, GTK+ Version
2.16.1) of 2010-05-09:

  (all-completions "" [])

I think the problem is on line 1593 of src/minibuf.c, but my
Emacs-innards-fu isn't good enough to attempt a fix.
[Message part 2 (text/html, inline)]

Information forwarded to owner <at> debbugs.gnu.org, bug-gnu-emacs <at> gnu.org:
bug#6378; Package emacs. (Tue, 08 Jun 2010 16:41:01 GMT) Full text and rfc822 format available.

Message #8 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Lawrence Mitchell <wence <at> gmx.li>
To: bug-gnu-emacs <at> gnu.org
Subject: Re: bug#6378: all-completions Segfault
Date: Tue, 08 Jun 2010 17:37:47 +0100
Nathan Weizenbaum wrote:
> This segfaults me on GNU Emacs 24.0.50.1 (i686-pc-linux-gnu, GTK+ Version
> 2.16.1) of 2010-05-09:

>   (all-completions "" [])

> I think the problem is on line 1593 of src/minibuf.c, but my
> Emacs-innards-fu isn't good enough to attempt a fix.

I think this patch should fix things

diff --git a/src/minibuf.c b/src/minibuf.c
index ad81bfd..1d93901 100644
--- a/src/minibuf.c
+++ b/src/minibuf.c
@@ -1590,7 +1590,7 @@ with a space are ignored unless STRING itself starts with a space.  */)
   if (type == 2)
     {
       obsize = XVECTOR (collection)->size;
-      bucket = XVECTOR (collection)->contents[index];
+      bucket = obsize == 0 ? zero : XVECTOR (collection)->contents[index];
     }
 
   while (1)


Although I don't understand why the code-path for the vector
version can't be simplified as in the following patch, which also
fixes the problem AFAICT:

diff --git a/src/minibuf.c b/src/minibuf.c
index ad81bfd..c6aae27 100644
--- a/src/minibuf.c
+++ b/src/minibuf.c
@@ -1610,22 +1610,14 @@ with a space are ignored unless STRING itself starts with a space.  */)
 	}
       else if (type == 2)
 	{
-	  if (!EQ (bucket, zero))
-	    {
-	      elt = bucket;
-	      eltstring = elt;
-	      if (XSYMBOL (bucket)->next)
-		XSETSYMBOL (bucket, XSYMBOL (bucket)->next);
-	      else
-		XSETFASTINT (bucket, 0);
-	    }
-	  else if (++index >= obsize)
-	    break;
-	  else
-	    {
-	      bucket = XVECTOR (collection)->contents[index];
-	      continue;
-	    }
+          if ( index < obsize )
+            {
+              elt = bucket;
+              eltstring = elt;
+              bucket = XVECTOR (collection)->contents[++index];
+            }
+          else
+            break;
 	}
       else /* if (type == 3) */
 	{

Cheers,
Lawrence
-- 
Lawrence Mitchell <wence <at> gmx.li>





Information forwarded to owner <at> debbugs.gnu.org, bug-gnu-emacs <at> gnu.org:
bug#6378; Package emacs. (Tue, 08 Jun 2010 16:42:02 GMT) Full text and rfc822 format available.

Message #11 received at 6378 <at> debbugs.gnu.org (full text, mbox):

From: Juanma Barranquero <lekktu <at> gmail.com>
To: Nathan Weizenbaum <nex342 <at> gmail.com>
Cc: 6378 <at> debbugs.gnu.org
Subject: Re: bug#6378: all-completions Segfault
Date: Tue, 8 Jun 2010 18:41:07 +0200
On Tue, Jun 8, 2010 at 17:46, Nathan Weizenbaum <nex342 <at> gmail.com> wrote:

>   (all-completions "" [])
>
> I think the problem is on line 1593 of src/minibuf.c, but my
> Emacs-innards-fu isn't good enough to attempt a fix.

minibuf.c:1617, at this code:

	      if (XSYMBOL (bucket)->next)

because bucket has been assigned random junk from the nonexistent item
at position 0 in COLLECTION.

It should be fixed with the attached patch.

    Juanma


2010-06-08  Juanma Barranquero  <lekktu <at> gmail.com>

	* minibuf.c (Fall_completions): Check COLLECTION's size.  (Bug#6378)


=== modified file 'src/minibuf.c'
--- src/minibuf.c	2010-01-13 08:35:10 +0000
+++ src/minibuf.c	2010-06-08 16:34:41 +0000
@@ -1591,5 +1591,5 @@
     {
       obsize = XVECTOR (collection)->size;
-      bucket = XVECTOR (collection)->contents[index];
+      bucket = obsize ? XVECTOR (collection)->contents[index] : zero;
     }




Reply sent to Juanma Barranquero <lekktu <at> gmail.com>:
You have taken responsibility. (Tue, 08 Jun 2010 16:54:01 GMT) Full text and rfc822 format available.

Notification sent to Nathan Weizenbaum <nex342 <at> gmail.com>:
bug acknowledged by developer. (Tue, 08 Jun 2010 16:54:02 GMT) Full text and rfc822 format available.

Message #16 received at 6378-done <at> debbugs.gnu.org (full text, mbox):

From: Juanma Barranquero <lekktu <at> gmail.com>
To: Nathan Weizenbaum <nex342 <at> gmail.com>
Cc: 6378-done <at> debbugs.gnu.org
Subject: Re: bug#6378: all-completions Segfault
Date: Tue, 8 Jun 2010 18:53:28 +0200
I've installed the fix on the emacs-23 branch.

    Juanma




Information forwarded to owner <at> debbugs.gnu.org, bug-gnu-emacs <at> gnu.org:
bug#6378; Package emacs. (Tue, 08 Jun 2010 18:59:02 GMT) Full text and rfc822 format available.

Message #19 received at 6378 <at> debbugs.gnu.org (full text, mbox):

From: Lennart Borgman <lennart.borgman <at> gmail.com>
To: 6378 <at> debbugs.gnu.org, lekktu <at> gmail.com
Cc: Nathan Weizenbaum <nex342 <at> gmail.com>, 6378-done <at> debbugs.gnu.org
Subject: Re: bug#6378: all-completions Segfault
Date: Tue, 8 Jun 2010 20:58:10 +0200
On Tue, Jun 8, 2010 at 6:53 PM, Juanma Barranquero <lekktu <at> gmail.com> wrote:
> I've installed the fix on the emacs-23 branch.

Isn't there a similar case in Ftry_completion?




Information forwarded to owner <at> debbugs.gnu.org, bug-gnu-emacs <at> gnu.org:
bug#6378; Package emacs. (Tue, 08 Jun 2010 19:09:01 GMT) Full text and rfc822 format available.

Message #23 received at 6378 <at> debbugs.gnu.org (full text, mbox):

From: Juanma Barranquero <lekktu <at> gmail.com>
To: Lennart Borgman <lennart.borgman <at> gmail.com>
Cc: Nathan Weizenbaum <nex342 <at> gmail.com>, 6378 <at> debbugs.gnu.org,
	6378-done <at> debbugs.gnu.org
Subject: Re: bug#6378: all-completions Segfault
Date: Tue, 8 Jun 2010 21:08:13 +0200
On Tue, Jun 8, 2010 at 20:58, Lennart Borgman <lennart.borgman <at> gmail.com> wrote:

> Isn't there a similar case in Ftry_completion?

Apparently no.

ELISP> (try-completion "" [])
*** Eval error ***  Wrong type argument: vectorp, []
ELISP> (try-completion "" [[]])
*** Eval error ***  Bad data in guts of obarray
ELISP> (try-completion "" [0])
nil
ELISP> (try-completion "" [a])
""
ELISP>

    Juanma




Information forwarded to owner <at> debbugs.gnu.org, bug-gnu-emacs <at> gnu.org:
bug#6378; Package emacs. (Tue, 08 Jun 2010 19:33:02 GMT) Full text and rfc822 format available.

Message #27 received at 6378 <at> debbugs.gnu.org (full text, mbox):

From: Lennart Borgman <lennart.borgman <at> gmail.com>
To: Juanma Barranquero <lekktu <at> gmail.com>
Cc: Nathan Weizenbaum <nex342 <at> gmail.com>, 6378 <at> debbugs.gnu.org,
	6378-done <at> debbugs.gnu.org
Subject: Re: bug#6378: all-completions Segfault
Date: Tue, 8 Jun 2010 21:32:11 +0200
On Tue, Jun 8, 2010 at 9:08 PM, Juanma Barranquero <lekktu <at> gmail.com> wrote:
> On Tue, Jun 8, 2010 at 20:58, Lennart Borgman <lennart.borgman <at> gmail.com> wrote:
>
>> Isn't there a similar case in Ftry_completion?
>
> Apparently no.
>
> ELISP> (try-completion "" [])
> *** Eval error ***  Wrong type argument: vectorp, []
> ELISP> (try-completion "" [[]])
> *** Eval error ***  Bad data in guts of obarray
> ELISP> (try-completion "" [0])
> nil
> ELISP> (try-completion "" [a])
> ""
> ELISP>
>
>    Juanma


So the thing protecting it is that an obarray can't have length 0? Can
one be sure that does not break someday?




Information forwarded to owner <at> debbugs.gnu.org, bug-gnu-emacs <at> gnu.org:
bug#6378; Package emacs. (Tue, 08 Jun 2010 19:59:02 GMT) Full text and rfc822 format available.

Message #31 received at 6378 <at> debbugs.gnu.org (full text, mbox):

From: Juanma Barranquero <lekktu <at> gmail.com>
To: Lennart Borgman <lennart.borgman <at> gmail.com>
Cc: Nathan Weizenbaum <nex342 <at> gmail.com>, 6378 <at> debbugs.gnu.org
Subject: Re: bug#6378: all-completions Segfault
Date: Tue, 8 Jun 2010 21:57:50 +0200
On Tue, Jun 8, 2010 at 21:32, Lennart Borgman <lennart.borgman <at> gmail.com> wrote:

> So the thing protecting it is that an obarray can't have length 0? Can
> one be sure that does not break someday?

Meaning?

    Juanma




Information forwarded to owner <at> debbugs.gnu.org, bug-gnu-emacs <at> gnu.org:
bug#6378; Package emacs. (Tue, 08 Jun 2010 20:32:02 GMT) Full text and rfc822 format available.

Message #34 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Stefan Monnier <monnier <at> IRO.UMontreal.CA>
To: Lawrence Mitchell <wence <at> gmx.li>
Cc: bug-gnu-emacs <at> gnu.org
Subject: Re: bug#6378: all-completions Segfault
Date: Tue, 08 Jun 2010 16:30:52 -0400
> Although I don't understand why the code-path for the vector
> version can't be simplified as in the following patch, which also
> fixes the problem AFAICT:

> diff --git a/src/minibuf.c b/src/minibuf.c
> index ad81bfd..c6aae27 100644
> --- a/src/minibuf.c
> +++ b/src/minibuf.c
> @@ -1610,22 +1610,14 @@ with a space are ignored unless STRING itself starts with a space.  */)
>  	}
>        else if (type == 2)
>  	{
> -	  if (!EQ (bucket, zero))
> -	    {
> -	      elt = bucket;
> -	      eltstring = elt;
> -	      if (XSYMBOL (bucket)->next)
> -		XSETSYMBOL (bucket, XSYMBOL (bucket)->next);
> -	      else
> -		XSETFASTINT (bucket, 0);
> -	    }
> -	  else if (++index >= obsize)
> -	    break;
> -	  else
> -	    {
> -	      bucket = XVECTOR (collection)->contents[index];
> -	      continue;
> -	    }
> +          if ( index < obsize )
> +            {
> +              elt = bucket;
> +              eltstring = elt;
> +              bucket = XVECTOR (collection)->contents[++index];
> +            }
> +          else
> +            break;
>  	}
>        else /* if (type == 3) */
>  	{

IIUC this would only loop through all the buckets, without looping
through each bucket's linked list.
Compare (length obarray)
and     (let ((i 0)) (mapatoms (lambda (_) (incf i)) obarray) i)


        Stefan




Information forwarded to owner <at> debbugs.gnu.org, bug-gnu-emacs <at> gnu.org:
bug#6378; Package emacs. (Wed, 09 Jun 2010 05:18:02 GMT) Full text and rfc822 format available.

Message #37 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Thierry Volpiatto <thierry.volpiatto <at> gmail.com>
To: bug-gnu-emacs <at> gnu.org
Subject: Re: bug#6378: all-completions Segfault
Date: Wed, 09 Jun 2010 07:13:31 +0200
Stefan Monnier <monnier <at> IRO.UMontreal.CA> writes:

>> Although I don't understand why the code-path for the vector
>> version can't be simplified as in the following patch, which also
>> fixes the problem AFAICT:
>
>> diff --git a/src/minibuf.c b/src/minibuf.c
>> index ad81bfd..c6aae27 100644
>> --- a/src/minibuf.c
>> +++ b/src/minibuf.c
>> @@ -1610,22 +1610,14 @@ with a space are ignored unless STRING itself starts with a space.  */)
>>  	}
>>        else if (type == 2)
>>  	{
>> -	  if (!EQ (bucket, zero))
>> -	    {
>> -	      elt = bucket;
>> -	      eltstring = elt;
>> -	      if (XSYMBOL (bucket)->next)
>> -		XSETSYMBOL (bucket, XSYMBOL (bucket)->next);
>> -	      else
>> -		XSETFASTINT (bucket, 0);
>> -	    }
>> -	  else if (++index >= obsize)
>> -	    break;
>> -	  else
>> -	    {
>> -	      bucket = XVECTOR (collection)->contents[index];
>> -	      continue;
>> -	    }
>> +          if ( index < obsize )
>> +            {
>> +              elt = bucket;
>> +              eltstring = elt;
>> +              bucket = XVECTOR (collection)->contents[++index];
>> +            }
>> +          else
>> +            break;
>>  	}
>>        else /* if (type == 3) */
>>  	{
>
> IIUC this would only loop through all the buckets, without looping
> through each bucket's linked list.
> Compare (length obarray)
> and     (let ((i 0)) (mapatoms (lambda (_) (incf i)) obarray) i)

Don't know if that related but

(completing-read "test: " [1 2 3 23 24 34 26 40 28])

test: 2 ==> TAB

instead of failing crash emacs.

 -- 
Thierry Volpiatto
Gpg key: http://pgp.mit.edu/





Information forwarded to owner <at> debbugs.gnu.org, bug-gnu-emacs <at> gnu.org:
bug#6378; Package emacs. (Wed, 09 Jun 2010 06:14:01 GMT) Full text and rfc822 format available.

Message #40 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Lennart Borgman <lennart.borgman <at> gmail.com>
To: Thierry Volpiatto <thierry.volpiatto <at> gmail.com>
Cc: bug-gnu-emacs <at> gnu.org
Subject: Re: bug#6378: all-completions Segfault
Date: Wed, 9 Jun 2010 08:13:12 +0200
On Wed, Jun 9, 2010 at 7:13 AM, Thierry Volpiatto
<thierry.volpiatto <at> gmail.com> wrote:
> (completing-read "test: " [1 2 3 23 24 34 26 40 28])

Does not that crash just because only symbols or strings can be keys
in the collection?




Information forwarded to owner <at> debbugs.gnu.org, bug-gnu-emacs <at> gnu.org:
bug#6378; Package emacs. (Wed, 09 Jun 2010 06:23:02 GMT) Full text and rfc822 format available.

Message #43 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Thierry Volpiatto <thierry.volpiatto <at> gmail.com>
To: bug-gnu-emacs <at> gnu.org
Subject: Re: bug#6378: all-completions Segfault
Date: Wed, 09 Jun 2010 08:18:27 +0200
Thierry Volpiatto <thierry.volpiatto <at> gmail.com> writes:

> Stefan Monnier <monnier <at> IRO.UMontreal.CA> writes:
>
>>> Although I don't understand why the code-path for the vector
>>> version can't be simplified as in the following patch, which also
>>> fixes the problem AFAICT:
>>
>>> diff --git a/src/minibuf.c b/src/minibuf.c
>>> index ad81bfd..c6aae27 100644
>>> --- a/src/minibuf.c
>>> +++ b/src/minibuf.c
>>> @@ -1610,22 +1610,14 @@ with a space are ignored unless STRING itself starts with a space.  */)
>>>  	}
>>>        else if (type == 2)
>>>  	{
>>> -	  if (!EQ (bucket, zero))
>>> -	    {
>>> -	      elt = bucket;
>>> -	      eltstring = elt;
>>> -	      if (XSYMBOL (bucket)->next)
>>> -		XSETSYMBOL (bucket, XSYMBOL (bucket)->next);
>>> -	      else
>>> -		XSETFASTINT (bucket, 0);
>>> -	    }
>>> -	  else if (++index >= obsize)
>>> -	    break;
>>> -	  else
>>> -	    {
>>> -	      bucket = XVECTOR (collection)->contents[index];
>>> -	      continue;
>>> -	    }
>>> +          if ( index < obsize )
>>> +            {
>>> +              elt = bucket;
>>> +              eltstring = elt;
>>> +              bucket = XVECTOR (collection)->contents[++index];
>>> +            }
>>> +          else
>>> +            break;
>>>  	}
>>>        else /* if (type == 3) */
>>>  	{
>>
>> IIUC this would only loop through all the buckets, without looping
>> through each bucket's linked list.
>> Compare (length obarray)
>> and     (let ((i 0)) (mapatoms (lambda (_) (incf i)) obarray) i)
>
> Don't know if that related but
>
> (completing-read "test: " [1 2 3 23 24 34 26 40 28])
>
> test: 2 ==> TAB
>
> instead of failing crash emacs.

Program received signal SIGSEGV, Segmentation fault.
0x08151015 in Fall_completions ()

-- 
Thierry Volpiatto
Gpg key: http://pgp.mit.edu/





Information forwarded to owner <at> debbugs.gnu.org, bug-gnu-emacs <at> gnu.org:
bug#6378; Package emacs. (Wed, 09 Jun 2010 07:27:02 GMT) Full text and rfc822 format available.

Message #46 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Thierry Volpiatto <thierry.volpiatto <at> gmail.com>
To: bug-gnu-emacs <at> gnu.org
Subject: Re: bug#6378: all-completions Segfault
Date: Wed, 09 Jun 2010 09:23:22 +0200
Lennart Borgman <lennart.borgman <at> gmail.com> writes:

> On Wed, Jun 9, 2010 at 7:13 AM, Thierry Volpiatto
> <thierry.volpiatto <at> gmail.com> wrote:
>> (completing-read "test: " [1 2 3 23 24 34 26 40 28])
>
> Does not that crash just because only symbols or strings can be keys
> in the collection?
I thought but it's worst, because:

(completing-read "test: " ["1" "2" "23" "24" "25" "34" "45" "56"])

Also crash emacs.

-- 
Thierry Volpiatto
Gpg key: http://pgp.mit.edu/





Information forwarded to owner <at> debbugs.gnu.org, bug-gnu-emacs <at> gnu.org:
bug#6378; Package emacs. (Wed, 09 Jun 2010 08:52:02 GMT) Full text and rfc822 format available.

Message #49 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Lennart Borgman <lennart.borgman <at> gmail.com>
To: Thierry Volpiatto <thierry.volpiatto <at> gmail.com>
Cc: bug-gnu-emacs <at> gnu.org
Subject: Re: bug#6378: all-completions Segfault
Date: Wed, 9 Jun 2010 10:51:00 +0200
On Wed, Jun 9, 2010 at 9:23 AM, Thierry Volpiatto
<thierry.volpiatto <at> gmail.com> wrote:
> Lennart Borgman <lennart.borgman <at> gmail.com> writes:
>
>> On Wed, Jun 9, 2010 at 7:13 AM, Thierry Volpiatto
>> <thierry.volpiatto <at> gmail.com> wrote:
>>> (completing-read "test: " [1 2 3 23 24 34 26 40 28])
>>
>> Does not that crash just because only symbols or strings can be keys
>> in the collection?
> I thought but it's worst, because:
>
> (completing-read "test: " ["1" "2" "23" "24" "25" "34" "45" "56"])
>
> Also crash emacs.

Yes, it expects an obarray, not a plain vector.




Information forwarded to owner <at> debbugs.gnu.org, bug-gnu-emacs <at> gnu.org:
bug#6378; Package emacs. (Wed, 09 Jun 2010 09:13:01 GMT) Full text and rfc822 format available.

Message #52 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Lawrence Mitchell <wence <at> gmx.li>
To: bug-gnu-emacs <at> gnu.org
Subject: Re: bug#6378: all-completions Segfault
Date: Wed, 09 Jun 2010 10:09:59 +0100
Stefan Monnier wrote:
[...]

> IIUC this would only loop through all the buckets, without looping
> through each bucket's linked list.
> Compare (length obarray)
> and     (let ((i 0)) (mapatoms (lambda (_) (incf i)) obarray) i)

That makes sense, thanks.

Lawrence

-- 
Lawrence Mitchell <wence <at> gmx.li>





Information forwarded to owner <at> debbugs.gnu.org, bug-gnu-emacs <at> gnu.org:
bug#6378; Package emacs. (Wed, 09 Jun 2010 10:09:02 GMT) Full text and rfc822 format available.

Message #55 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Thierry Volpiatto <thierry.volpiatto <at> gmail.com>
To: bug-gnu-emacs <at> gnu.org
Subject: Re: bug#6378: all-completions Segfault
Date: Wed, 09 Jun 2010 12:05:15 +0200
Lennart Borgman <lennart.borgman <at> gmail.com> writes:

> On Wed, Jun 9, 2010 at 9:23 AM, Thierry Volpiatto
> <thierry.volpiatto <at> gmail.com> wrote:
>> Lennart Borgman <lennart.borgman <at> gmail.com> writes:
>>
>>> On Wed, Jun 9, 2010 at 7:13 AM, Thierry Volpiatto
>>> <thierry.volpiatto <at> gmail.com> wrote:
>>>> (completing-read "test: " [1 2 3 23 24 34 26 40 28])
>>>
>>> Does not that crash just because only symbols or strings can be keys
>>> in the collection?
>> I thought but it's worst, because:
>>
>> (completing-read "test: " ["1" "2" "23" "24" "25" "34" "45" "56"])
>>
>> Also crash emacs.
>
> Yes, it expects an obarray, not a plain vector.

Anyway if completing-read is not able to handle a vector 
it should return an error and not crashing emacs.

-- 
Thierry Volpiatto
Gpg key: http://pgp.mit.edu/





Information forwarded to owner <at> debbugs.gnu.org, bug-gnu-emacs <at> gnu.org:
bug#6378; Package emacs. (Wed, 09 Jun 2010 11:46:02 GMT) Full text and rfc822 format available.

Message #58 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Andreas Schwab <schwab <at> linux-m68k.org>
To: Thierry Volpiatto <thierry.volpiatto <at> gmail.com>
Cc: bug-gnu-emacs <at> gnu.org
Subject: Re: bug#6378: all-completions Segfault
Date: Wed, 09 Jun 2010 13:43:05 +0200
Thierry Volpiatto <thierry.volpiatto <at> gmail.com> writes:

> Anyway if completing-read is not able to handle a vector 
> it should return an error and not crashing emacs.

This is already fixed in emacs-23.

Andreas.

-- 
Andreas Schwab, schwab <at> linux-m68k.org
GPG Key fingerprint = 58CA 54C7 6D53 942B 1756  01D3 44D5 214B 8276 4ED5
"And now for something completely different."




Information forwarded to owner <at> debbugs.gnu.org, bug-gnu-emacs <at> gnu.org:
bug#6378; Package emacs. (Wed, 09 Jun 2010 12:14:02 GMT) Full text and rfc822 format available.

Message #61 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Thierry Volpiatto <thierry.volpiatto <at> gmail.com>
To: Andreas Schwab <schwab <at> linux-m68k.org>
Cc: bug-gnu-emacs <at> gnu.org
Subject: Re: bug#6378: all-completions Segfault
Date: Wed, 09 Jun 2010 14:01:52 +0200
Andreas Schwab <schwab <at> linux-m68k.org> writes:

> Thierry Volpiatto <thierry.volpiatto <at> gmail.com> writes:
>
>> Anyway if completing-read is not able to handle a vector 
>> it should return an error and not crashing emacs.
>
> This is already fixed in emacs-23.
I don't understand, it is fixed in emacs-23 and not in emacs-24?

I am speaking of:
GNU Emacs 24.0.50.1 (i686-pc-linux-gnu, GTK+ Version 2.18.9)
 of 2010-06-08 on tux

-- 
Thierry Volpiatto
Gpg key: http://pgp.mit.edu/




Information forwarded to owner <at> debbugs.gnu.org, bug-gnu-emacs <at> gnu.org:
bug#6378; Package emacs. (Wed, 09 Jun 2010 12:15:02 GMT) Full text and rfc822 format available.

Message #64 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Andreas Schwab <schwab <at> linux-m68k.org>
To: Thierry Volpiatto <thierry.volpiatto <at> gmail.com>
Cc: bug-gnu-emacs <at> gnu.org
Subject: Re: bug#6378: all-completions Segfault
Date: Wed, 09 Jun 2010 14:13:48 +0200
Thierry Volpiatto <thierry.volpiatto <at> gmail.com> writes:

> I don't understand, it is fixed in emacs-23 and not in emacs-24?

Because nobody merged it yet.

Andreas.

-- 
Andreas Schwab, schwab <at> linux-m68k.org
GPG Key fingerprint = 58CA 54C7 6D53 942B 1756  01D3 44D5 214B 8276 4ED5
"And now for something completely different."




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Thu, 08 Jul 2010 11:24:03 GMT) Full text and rfc822 format available.

This bug report was last modified 15 years and 46 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.