aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Hjemli <hjemli@gmail.com>2009-08-24 10:14:02 +0200
committerLars Hjemli <hjemli@gmail.com>2009-08-24 10:22:59 +0200
commit42e7a169e8b7212847404730b781131759abd877 (patch)
tree9a46d2964d22ce8595e58924164c045956244faf
parentAdd config option 'enable-filter-overrides' (diff)
downloadcgit-42e7a169e8b7212847404730b781131759abd877.tar.xz
cgit-42e7a169e8b7212847404730b781131759abd877.zip
shared.c: initialize cgit_repo structs properly
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
-rw-r--r--shared.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/shared.c b/shared.c
index 9475581..d7b2d5a 100644
--- a/shared.c
+++ b/shared.c
@@ -48,6 +48,7 @@ struct cgit_repo *cgit_add_repo(const char *url)
}
ret = &cgit_repolist.repos[cgit_repolist.count-1];
+ memset(ret, 0, sizeof(struct cgit_repo));
ret->url = trim_end(url, '/');
ret->name = ret->url;
ret->path = NULL;