diff options
author | Michael Vogt <egon@bottom> | 2006-12-14 11:29:20 +0100 |
---|---|---|
committer | Michael Vogt <egon@bottom> | 2006-12-14 11:29:20 +0100 |
commit | 478707e015972cd3efea32059c97b13508705a26 (patch) | |
tree | 6c69c35fd70b57744d756539b91b7509b6d593ae /apt-pkg/deb/debsrcrecords.cc | |
parent | b790b130ad0a43be5738c467c16bbc2dd657ca66 (diff) | |
parent | a7a5b0e45e2e66ab2142da8181bcc9cd0b3ba8a8 (diff) |
* merged with apt--debian-sid
Diffstat (limited to 'apt-pkg/deb/debsrcrecords.cc')
-rw-r--r-- | apt-pkg/deb/debsrcrecords.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apt-pkg/deb/debsrcrecords.cc b/apt-pkg/deb/debsrcrecords.cc index e1c6427e8..9e87ee5da 100644 --- a/apt-pkg/deb/debsrcrecords.cc +++ b/apt-pkg/deb/debsrcrecords.cc @@ -40,7 +40,7 @@ const char **debSrcRecordParser::Binaries() { delete [] Buffer; // allocate new size based on buffer (but never smaller than 4000) - BufSize = max((unsigned long)4000, max(Bins.length()+1,2*BufSize)); + BufSize = max((unsigned long)4000, max((unsigned long)Bins.length()+1,2*BufSize)); Buffer = new char[BufSize]; } |