git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] connect.c: guard config parser from value=NULL
@ 2008-02-09  0:35 Govind Salinas
  0 siblings, 0 replies; only message in thread
From: Govind Salinas @ 2008-02-09  0:35 UTC (permalink / raw)
  To: Git Mailing List; +Cc: gitster

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

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2008-02-09  0:36 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-02-09  0:35 [PATCH] connect.c: guard config parser from value=NULL Govind Salinas

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).