Merge branch 'snapshot-fixes'

This commit is contained in:
Lars Hjemli 2009-01-11 12:22:46 +01:00
commit aa60ae12cb
2 changed files with 15 additions and 13 deletions

View file

@ -175,10 +175,12 @@ void cgit_print_snapshot(const char *head, const char *hex,
if (!hex && dwim) {
hex = get_ref_from_filename(ctx.repo->url, filename, f);
if (hex != NULL) {
prefix = xstrdup(filename);
prefix[strlen(filename) - strlen(f->suffix)] = '\0';
if (hex == NULL) {
html_status(404, "Not found", 0);
return;
}
prefix = xstrdup(filename);
prefix[strlen(filename) - strlen(f->suffix)] = '\0';
}
if (!hex)