From: Juanma Barranquero Date: Tue, 8 Jun 2010 16:53:11 +0000 (+0200) Subject: * minibuf.c (Fall_completions): Check COLLECTION's size (bug#6378). X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~844^2~623^2~574 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=9b27fd9f75698a1b12dd071c77c970170392a704;p=emacs.git * minibuf.c (Fall_completions): Check COLLECTION's size (bug#6378). --- diff --git a/src/ChangeLog b/src/ChangeLog index 0402c8e6d6c..5dc2c25a984 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2010-06-08 Juanma Barranquero + + * minibuf.c (Fall_completions): Check COLLECTION's size (bug#6378). + 2010-06-03 Andreas Schwab * process.c (conv_lisp_to_sockaddr): Fix conversion of IPv4 diff --git a/src/minibuf.c b/src/minibuf.c index ad81bfdd0b4..0a57d2a82eb 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 ? XVECTOR (collection)->contents[index] : zero; } while (1)