commit | 42e7a169e8b7212847404730b781131759abd877 | [log] [tgz] |
---|---|---|
author | Lars Hjemli <hjemli@gmail.com> | Mon Aug 24 10:14:02 2009 +0200 |
committer | Lars Hjemli <hjemli@gmail.com> | Mon Aug 24 10:22:59 2009 +0200 |
tree | 9a46d2964d22ce8595e58924164c045956244faf | |
parent | 2273c2c821bfc77d492d7e97ae38f162d7fc91aa [diff] [blame] |
shared.c: initialize cgit_repo structs properly Signed-off-by: Lars Hjemli <hjemli@gmail.com>
diff --git a/shared.c b/shared.c index 9475581..d7b2d5a 100644 --- a/shared.c +++ b/shared.c
@@ -48,6 +48,7 @@ } 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;