svn2revisioninc: increase buffer size when reading git rev-list. Should fix issue #20471

git-svn-id: trunk@32848 -
This commit is contained in:
juha 2011-10-12 11:44:21 +00:00
parent b358c98210
commit 8dee4154d2

View File

@ -485,7 +485,7 @@ end;
}
function TSvn2RevisionApplication.GetGitBranchPoint: string;
const
cBufSize = 400; // this can hold 10 SHA1 values at a time
cBufSize = 16000; // this can hold many SHA1 values at a time
var
p: TProcessUTF8;
Buffer: string;