From: Ali Lakhia <lakhia@alumni.utexas.net>
To: gdb-patches@sourceware.org
Subject: Re: [patch] [trivial] fix NULL deref
Date: Thu, 30 Sep 2010 18:53:00 -0000 [thread overview]
Message-ID: <AANLkTimHiG3PWWiP8-dn+4=jC3QzCX3sWJWTM5r9cYno@mail.gmail.com> (raw)
In-Reply-To: <AANLkTikZK0Vvi9Q0yv+S_DcB0O9yTJbJdjDohuW9kBpd@mail.gmail.com>
[-- Attachment #1: Type: text/plain, Size: 122 bytes --]
Haven't heard back from anyone. Just wanted to ping and make sure the
patch did not fall through the crack. Thanks,
-Ali
[-- Attachment #2: patch --]
[-- Type: application/octet-stream, Size: 835 bytes --]
--- gdb-7.1/gdb/fork-child.c 2009-12-31 23:31:31.000000000 -0800
+++ gdb-7.1/gdb/fork-child.c 2010-09-16 10:17:25.000000000 -0700
@@ -52,7 +52,7 @@
static void
breakup_args (char *scratch, char **argv)
{
- char *cp = scratch;
+ char *cp = scratch, *tmp;
for (;;)
{
@@ -68,15 +68,16 @@
*argv++ = cp;
/* Scan for next arg separator. */
- cp = strchr (cp, ' ');
- if (cp == NULL)
- cp = strchr (cp, '\t');
- if (cp == NULL)
- cp = strchr (cp, '\n');
+ tmp = strchr (cp, ' ');
+ if (tmp == NULL)
+ tmp = strchr (cp, '\t');
+ if (tmp == NULL)
+ tmp = strchr (cp, '\n');
/* No separators => end of string => break. */
- if (cp == NULL)
+ if (tmp == NULL)
break;
+ cp = tmp;
/* Replace the separator with a terminator. */
*cp++ = '\0';
next prev parent reply other threads:[~2010-09-30 17:51 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-09-16 18:30 Ali Lakhia
2010-09-16 19:17 ` Daniel Jacobowitz
2010-09-16 19:21 ` Ali Lakhia
2010-09-30 18:53 ` Ali Lakhia [this message]
2010-09-30 18:57 ` Michael Snyder
2010-09-30 19:01 ` Joel Brobecker
[not found] ` <AANLkTi=eko07y=CDdWpsr_7ZZvd=FHYjc-uo4v8SLd6E@mail.gmail.com>
2010-10-01 17:36 ` Michael Snyder
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='AANLkTimHiG3PWWiP8-dn+4=jC3QzCX3sWJWTM5r9cYno@mail.gmail.com' \
--to=lakhia@alumni.utexas.net \
--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