diff options
author | Tim Nordell | 2016-02-26 14:57:30 -0600 |
---|---|---|
committer | Jason A. Donenfeld | 2016-05-12 17:17:02 +0200 |
commit | 499b23979cd29513df16e4c2acce934932e09f7a (patch) | |
tree | 6ce40d01b0d917ca5acb1813ff5418fe73ca4747 | |
parent | Renamed repo-specific configuration for enable-html-serving in cgitrc.5.txt (diff) | |
download | cgit-499b23979cd29513df16e4c2acce934932e09f7a.tar.gz cgit-499b23979cd29513df16e4c2acce934932e09f7a.zip |
ui-log: Do not always emit decoration span
The decoration span does not need to be emited if there aren't any decorations to show. This modification saves slightly on bandwidth. Signed-off-by: Tim Nordell <tim.nordell@logicpd.com>
-rw-r--r-- | ui-log.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ui-log.c b/ui-log.c index 0a3938b..641a5b6 100644 --- a/ui-log.c +++ b/ui-log.c | |||
@@ -61,6 +61,8 @@ void show_commit_decorations(struct commit *commit) | |||
61 | 61 | ||
62 | buf[sizeof(buf) - 1] = 0; | 62 | buf[sizeof(buf) - 1] = 0; |
63 | deco = get_name_decoration(&commit->object); | 63 | deco = get_name_decoration(&commit->object); |
64 | if (!deco) | ||
65 | return; | ||
64 | html("<span class='decoration'>"); | 66 | html("<span class='decoration'>"); |
65 | while (deco) { | 67 | while (deco) { |
66 | if (starts_with(deco->name, "refs/heads/")) { | 68 | if (starts_with(deco->name, "refs/heads/")) { |