-rw-r--r-- | shared.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -50,2 +50,3 @@ 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, '/'); @@ -55,3 +56,3 @@ struct cgit_repo *cgit_add_repo(const char *url) ret->owner = NULL; - ret->group = ctx.cfg.repo_group; + ret->section = ctx.cfg.section; ret->defbranch = "master"; |