From: "Govind Salinas" <blix@sophiasuchtig.com>
To: "Git Mailing List" <git@vger.kernel.org>
Cc: gitster@pobox.com
Subject: [PATCH] connect.c: guard config parser from value=NULL
Date: Fri, 8 Feb 2008 18:35:31 -0600 [thread overview]
Message-ID: <5d46db230802081635v2b250aa5i173a1cfba0c06d81@mail.gmail.com> (raw)
Signed-off-by: Govind Salinas <blix@sophiasuchtig.com>
---
connect.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/connect.c b/connect.c
index 3aefd4a..90315ff 100644
--- a/connect.c
+++ b/connect.c
@@ -363,7 +363,7 @@ static int rhost_len;
static int git_proxy_command_options(const char *var, const char *value)
{
- if (!strcmp(var, "core.gitproxy")) {
+ if (value && !strcmp(var, "core.gitproxy")) {
const char *for_pos;
int matchlen = -1;
int hostlen;
--
1.5.4.36.g9af61
reply other threads:[~2008-02-09 0:36 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
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=5d46db230802081635v2b250aa5i173a1cfba0c06d81@mail.gmail.com \
--to=blix@sophiasuchtig.com \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
/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;
as well as URLs for NNTP newsgroup(s).