summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: d26c426)
raw | patch | inline | side by side (parent: d26c426)
author | Junio C Hamano <junkio@cox.net> | |
Thu, 17 May 2007 04:04:16 +0000 (21:04 -0700) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Thu, 17 May 2007 04:04:16 +0000 (21:04 -0700) |
Pasky and Jakub competed fixing these and in the confusion this ended up
not being covered.
Signed-off-by: Junio C Hamano <junkio@cox.net>
not being covered.
Signed-off-by: Junio C Hamano <junkio@cox.net>
gitweb/gitweb.perl | patch | blob | history |
diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl
index 8c688be66d5a972d57c37031042bd5d56395a079..6f5df9174ec80d4decf4be8111f84e79411a156d 100755 (executable)
--- a/gitweb/gitweb.perl
+++ b/gitweb/gitweb.perl
open my $fd, "$projectroot/$path/description" or return undef;
my $descr = <$fd>;
close $fd;
- chomp $descr;
+ if (defined $descr) {
+ chomp $descr;
+ }
return $descr;
}