From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 18317 invoked by alias); 3 Dec 2001 19:31:53 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 18264 invoked from network); 3 Dec 2001 19:31:16 -0000 Received: from unknown (HELO cygnus.com) (205.180.230.5) by sources.redhat.com with SMTP; 3 Dec 2001 19:31:16 -0000 Received: from reddwarf.cygnus.com (reddwarf.cygnus.com [205.180.231.12]) by runyon.cygnus.com (8.8.7-cygnus/8.8.7) with ESMTP id LAA20104 for ; Mon, 3 Dec 2001 11:31:15 -0800 (PST) Received: (from msnyder@localhost) by reddwarf.cygnus.com (8.11.2/8.11.2) id fB3JSql03665 for gdb-patches@sources.redhat.com; Mon, 3 Dec 2001 11:28:52 -0800 Date: Mon, 03 Dec 2001 11:31:00 -0000 From: Michael Snyder Message-Id: <200112031928.fB3JSql03665@reddwarf.cygnus.com> To: gdb-patches@sources.redhat.com Subject: [PATCH] symtab.c: make sure alloca is big enough X-SW-Source: 2001-12/txt/msg00054.txt.bz2 2001-12-03 Michael Snyder * symtab.c (search_symbols): Make sure alloca size is big enough. Index: symtab.c =================================================================== RCS file: /cvs/src/src/gdb/symtab.c,v retrieving revision 1.48 diff -c -3 -p -r1.48 symtab.c *** symtab.c 2001/11/13 16:42:50 1.48 --- symtab.c 2001/12/03 19:28:26 *************** search_symbols (char *regexp, namespace_ *** 2422,2428 **** /* If wrong number of spaces, fix it. */ if (fix >= 0) { ! char *tmp = (char *) alloca (strlen (regexp) + fix); sprintf (tmp, "operator%.*s%s", fix, " ", opname); regexp = tmp; } --- 2422,2428 ---- /* If wrong number of spaces, fix it. */ if (fix >= 0) { ! char *tmp = (char *) alloca (8 + fix + strlen (opname) + 1); sprintf (tmp, "operator%.*s%s", fix, " ", opname); regexp = tmp; }