fix bug in history of subversion repositories

This commit is contained in:
Sebastian Sdorra
2012-10-13 11:26:30 +02:00
parent 1a9165837a
commit 8d9d32af66

View File

@@ -202,7 +202,7 @@ public class SvnLogCommand extends AbstractSvnCommand implements LogCommand
int max = request.getPagingLimit() + start;
int end = total;
if (end > max)
if ((max > 0) && (end > max))
{
end = max;
}