Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
From: Tom Tromey <tromey@redhat.com>
To: Brad Roberts <braddr@puremagic.com>
Cc: gdb-patches@sourceware.org
Subject: Re: patch for crash in d-lang.c's demangler
Date: Tue, 10 Aug 2010 22:17:00 -0000	[thread overview]
Message-ID: <m3k4ny9kql.fsf@fleche.redhat.com> (raw)
In-Reply-To: <4C55E1CE.5000301@puremagic.com> (Brad Roberts's message of "Sun,	01 Aug 2010 14:06:22 -0700")

>>>>> "Brad" == Brad Roberts <braddr@puremagic.com> writes:

Brad> There's a minor, but important bug in the d language symbol
Brad> demangler.  I haven't reviewed the whole thing for other bugs,
Brad> just the one that I hit.

Thanks.

Brad> I don't have a copyright assignment form on file, but hopefully
Brad> this diff is small enough to not require one.

Yes, I agree.

I think your patch is reasonable, but the line just after your change is
weird:

>        if (i <= 0  && strlen (mangled_str) < i)
>          return 0;

I don't think that condition can ever be true.

What do you think of this patch, instead?

Tom

*** d-lang.c.~1.1.~	2010-04-29 08:45:38.000000000 -0600
--- d-lang.c	2010-08-10 16:14:51.000000000 -0600
***************
*** 37,45 ****
  
    while (isdigit (*mangled_str))
      {
!       i = strtol (mangled_str, NULL, 10);
!       mangled_str++;
!       if (i <= 0  && strlen (mangled_str) < i)
          return 0;
        obstack_grow (tempbuf, mangled_str, i);
        mangled_str += i;
--- 37,47 ----
  
    while (isdigit (*mangled_str))
      {
!       char *end_ptr;
! 
!       i = strtol (mangled_str, &end_ptr, 10);
!       mangled_str = end_ptr;
!       if (i <= 0 || strlen (mangled_str) < i)
          return 0;
        obstack_grow (tempbuf, mangled_str, i);
        mangled_str += i;


  reply	other threads:[~2010-08-10 22:17 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-08-01 21:10 Brad Roberts
2010-08-10 22:17 ` Tom Tromey [this message]
2010-08-10 23:15   ` Brad Roberts
2010-08-11  1:52     ` Tom Tromey
2010-08-11 15:41       ` Tom Tromey

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=m3k4ny9kql.fsf@fleche.redhat.com \
    --to=tromey@redhat.com \
    --cc=braddr@puremagic.com \
    --cc=gdb-patches@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox