diff options
author | Lars Hjemli <hjemli@gmail.com> | 2009-08-24 10:14:02 +0200 |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2009-08-24 10:22:59 +0200 |
commit | 42e7a169e8b7212847404730b781131759abd877 (patch) | |
tree | 9a46d2964d22ce8595e58924164c045956244faf /shared.c | |
parent | 2273c2c821bfc77d492d7e97ae38f162d7fc91aa (diff) | |
download | cgit-42e7a169e8b7212847404730b781131759abd877.tar.gz cgit-42e7a169e8b7212847404730b781131759abd877.tar.bz2 cgit-42e7a169e8b7212847404730b781131759abd877.zip |
shared.c: initialize cgit_repo structs properly
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to '')
-rw-r--r-- | shared.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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; |