This is the mail archive of the
gdb-patches@sourceware.org
mailing list for the GDB project.
Re: [RFC/RFA] Add support for catch Ada exceptions (take 2)
- From: Mark Kettenis <mark dot kettenis at xs4all dot nl>
- To: brobecker at adacore dot com
- Cc: gdb-patches at sourceware dot org
- Date: Sun, 31 Dec 2006 23:11:34 +0100 (CET)
- Subject: Re: [RFC/RFA] Add support for catch Ada exceptions (take 2)
- References: <20061231060649.GF25236@adacore.com> <uwt47afr4.fsf@gnu.org>
> > Date: Sun, 31 Dec 2006 10:06:49 +0400
> > From: Joel Brobecker <brobecker@adacore.com>
> >
> > + switch (b->type)
> > + {
> > + case bp_catch_exception:
> > + if (b->addr_string != NULL)
> > + {
> > + const char *template = _("`%s' Ada exception");
> > + char *msg = alloca (strlen (template) + strlen (b->addr_string));
> > +
> > + sprintf (msg, _("`%s' Ada exception"), b->addr_string);
Joel, could you use xsnprintf() instead of sprintf()?
Mark