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

Signed-off-by: Govind Salinas <blix@sophiasuchtig.com>
---
 builtin-reflog.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/builtin-reflog.c b/builtin-reflog.c
index e6834dd..03b8ab4 100644
--- a/builtin-reflog.c
+++ b/builtin-reflog.c
@@ -307,9 +307,9 @@ static int collect_reflog(const char *ref, const
unsigned char *sha1, int unused

 static int reflog_expire_config(const char *var, const char *value)
 {
-	if (!strcmp(var, "gc.reflogexpire"))
+	if (value && !strcmp(var, "gc.reflogexpire"))
 		default_reflog_expire = approxidate(value);
-	else if (!strcmp(var, "gc.reflogexpireunreachable"))
+	else if (value && !strcmp(var, "gc.reflogexpireunreachable"))
 		default_reflog_expire_unreachable = approxidate(value);
 	else
 		return git_default_config(var, value);
-- 
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:40 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:39 [PATCH] builtin-reflog.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).