author | Daniel Milde <info@milde.cz> | 2010-02-21 13:38:59 (UTC) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2010-02-27 11:52:12 (UTC) |
commit | 9bd3a7b1ea6c5863d7cba1b5352ce707f5d129a0 (patch) (side-by-side diff) | |
tree | c740cdfdb6aa42e6ae67376b524bd9c8e44b927f | |
parent | 8d946079c5f51ce934ff5edf6333962c6061d8a5 (diff) | |
download | cgit-9bd3a7b1ea6c5863d7cba1b5352ce707f5d129a0.zip cgit-9bd3a7b1ea6c5863d7cba1b5352ce707f5d129a0.tar.gz cgit-9bd3a7b1ea6c5863d7cba1b5352ce707f5d129a0.tar.bz2 |
Clear the whole context
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
-rw-r--r-- | cgit.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -235,33 +235,33 @@ static void querystring_cb(const char *name, const char *value) } else if (!strcmp(name, "s")){ ctx.qry.sort = xstrdup(value); } else if (!strcmp(name, "showmsg")) { ctx.qry.showmsg = atoi(value); } else if (!strcmp(name, "period")) { ctx.qry.period = xstrdup(value); } } char *xstrdupn(const char *str) { return (str ? xstrdup(str) : NULL); } static void prepare_context(struct cgit_context *ctx) { - memset(ctx, 0, sizeof(ctx)); + memset(ctx, 0, sizeof(*ctx)); ctx->cfg.agefile = "info/web/last-modified"; ctx->cfg.nocache = 0; ctx->cfg.cache_size = 0; ctx->cfg.cache_dynamic_ttl = 5; ctx->cfg.cache_max_create_time = 5; ctx->cfg.cache_repo_ttl = 5; ctx->cfg.cache_root = CGIT_CACHE_ROOT; ctx->cfg.cache_root_ttl = 5; ctx->cfg.cache_scanrc_ttl = 15; ctx->cfg.cache_static_ttl = -1; ctx->cfg.css = "/cgit.css"; ctx->cfg.logo = "/cgit.png"; ctx->cfg.local_time = 0; ctx->cfg.enable_tree_linenumbers = 1; ctx->cfg.max_repo_count = 50; ctx->cfg.max_commit_count = 50; |