From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1Fcc2B-00053G-MB for mharc-grub-devel@gnu.org; Sun, 07 May 2006 01:42:23 -0400 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Fcc2A-0004zz-6N for grub-devel@gnu.org; Sun, 07 May 2006 01:42:22 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Fcc28-0004xh-C9 for grub-devel@gnu.org; Sun, 07 May 2006 01:42:21 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Fcc28-0004xe-85 for grub-devel@gnu.org; Sun, 07 May 2006 01:42:20 -0400 Received: from [212.85.152.101] (helo=kotoba.storever.com) by monty-python.gnu.org with esmtp (Exim 4.52) id 1Fcc2f-00011j-RH for grub-devel@gnu.org; Sun, 07 May 2006 01:42:54 -0400 Received: from kotoba.oasis.nexedi.com (kotoba.oasis.nexedi.com [212.85.152.101]) by kotoba.storever.com (Postfix) with ESMTP id 5FF633C925552 for ; Sun, 7 May 2006 09:06:19 +0200 (CEST) Received: from [??1] (localhost [127.0.0.1]) by kotoba.storever.com (Postfix) with ESMTP id E4E293C925551 for ; Sun, 7 May 2006 09:06:18 +0200 (CEST) From: "Yoshinori K. Okuji" Organization: enbug.org To: grub-devel@gnu.org Date: Sun, 7 May 2006 07:42:15 +0200 User-Agent: KMail/1.8.2 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200605070742.15975.okuji@enbug.org> X-Bogosity: No, tests=bogofilter, spamicity=0.169279, version=0.17.2 Subject: script bug X-BeenThere: grub-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: The development of GRUB 2 List-Id: The development of GRUB 2 List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 May 2006 05:42:22 -0000 Try something like this: @ "extremely long long line............................................................." { } grub-emu segfaults. This is partially because of the menu code, partilaly because of the scripting engine code. The menu code currently limits the max number of characters per line to 100 (very bad). So get_line chops the line, then the scripting engine cannot deal with the malformed line. Both must be fixed. Okuji