Unidiff1 files changed, 1 insertions, 0 deletions
|
diff --git a/shared.c b/shared.c index 9475581..d7b2d5a 100644 --- a/ shared.c+++ b/ shared.c |
|
@@ -43,16 +43,17 @@ struct cgit_repo *cgit_add_repo(const char *url) |
43 | else |
43 | else |
44 | cgit_repolist.length *= 2; |
44 | cgit_repolist.length *= 2; |
45 | cgit_repolist.repos = xrealloc(cgit_repolist.repos, |
45 | cgit_repolist.repos = xrealloc(cgit_repolist.repos, |
46 | cgit_repolist.length * |
46 | cgit_repolist.length * |
47 | sizeof(struct cgit_repo)); |
47 | sizeof(struct cgit_repo)); |
48 | } |
48 | } |
49 | |
49 | |
50 | ret = &cgit_repolist.repos[cgit_repolist.count-1]; |
50 | ret = &cgit_repolist.repos[cgit_repolist.count-1]; |
| |
51 | memset(ret, 0, sizeof(struct cgit_repo)); |
51 | ret->url = trim_end(url, '/'); |
52 | ret->url = trim_end(url, '/'); |
52 | ret->name = ret->url; |
53 | ret->name = ret->url; |
53 | ret->path = NULL; |
54 | ret->path = NULL; |
54 | ret->desc = "[no description]"; |
55 | ret->desc = "[no description]"; |
55 | ret->owner = NULL; |
56 | ret->owner = NULL; |
56 | ret->section = ctx.cfg.section; |
57 | ret->section = ctx.cfg.section; |
57 | ret->defbranch = "master"; |
58 | ret->defbranch = "master"; |
58 | ret->snapshots = ctx.cfg.snapshots; |
59 | ret->snapshots = ctx.cfg.snapshots; |
|