* [PATCH] builtin-show-branch.c: guard config parser from value=NULL
@ 2008-02-09 0:36 Govind Salinas
0 siblings, 0 replies; only message in thread
From: Govind Salinas @ 2008-02-09 0:36 UTC (permalink / raw)
To: Git Mailing List; +Cc: Junio C Hamano
Signed-off-by: Govind Salinas <blix@sophiasuchtig.com>
---
builtin-show-branch.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/builtin-show-branch.c b/builtin-show-branch.c
index 6dc835d..3f60f32 100644
--- a/builtin-show-branch.c
+++ b/builtin-show-branch.c
@@ -535,7 +535,7 @@ static void append_one_rev(const char *av)
static int git_show_branch_config(const char *var, const char *value)
{
- if (!strcmp(var, "showbranch.default")) {
+ if (value && !strcmp(var, "showbranch.default")) {
if (default_alloc <= default_num + 1) {
default_alloc = default_alloc * 3 / 2 + 20;
default_arg = xrealloc(default_arg, sizeof *default_arg * default_alloc);
--
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:37 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:36 [PATCH] builtin-show-branch.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).