all repos — cgit @ 112973615a78ce61fd6e767128df03b075be72ca

a hyperfast web frontend for git written in c

fix segfault when displaying empty blobs

When size is zero, subtracting one from it turns it into
ULONG_MAX which causes an out-of-bounds access on buf.

Signed-off-by: Eric Wong <normalperson@yhbt.net>
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Eric Wong normalperson@yhbt.net
Sat, 14 Mar 2009 18:41:47 -0700
commit

112973615a78ce61fd6e767128df03b075be72ca

parent

6063e7b5532481ffaa7a6f080de28547983bbeb7

1 files changed, 8 insertions(+), 5 deletions(-)

jump to
M ui-tree.cui-tree.c

@@ -25,11 +25,14 @@ html("<table summary='blob content' class='blob'>\n");

html("<tr><td class='linenumbers'><pre>"); idx = 0; lineno = 0; - htmlf(numberfmt, ++lineno); - while(idx < size - 1) { // skip absolute last newline - if (buf[idx] == '\n') - htmlf(numberfmt, ++lineno); - idx++; + + if (size) { + htmlf(numberfmt, ++lineno); + while(idx < size - 1) { // skip absolute last newline + if (buf[idx] == '\n') + htmlf(numberfmt, ++lineno); + idx++; + } } html("</pre></td>\n"); html("<td class='lines'><pre><code>");