diff options
author | bubulle@debian.org <> | 2006-12-11 21:14:32 +0100 |
---|---|---|
committer | bubulle@debian.org <> | 2006-12-11 21:14:32 +0100 |
commit | 340de3c2c189ce8e94b3181ad219c360b7f913b2 (patch) | |
tree | 95e26ec7ffa142bcaf415a2611306f444c0735f5 /apt-pkg/deb | |
parent | 5745571310a4f39bf2e0f6c4f0c6a56bed3c0eff (diff) | |
parent | 82b1691e27956cad53d65e0e93f1aa39d407b3d9 (diff) |
Merke with Michael
Update Ukrainian translation
Activate Ukrainian. Closes: #396966
Diffstat (limited to 'apt-pkg/deb')
-rw-r--r-- | apt-pkg/deb/debindexfile.cc | 2 | ||||
-rw-r--r-- | apt-pkg/deb/debsrcrecords.cc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/apt-pkg/deb/debindexfile.cc b/apt-pkg/deb/debindexfile.cc index ff8bce85d..234521efe 100644 --- a/apt-pkg/deb/debindexfile.cc +++ b/apt-pkg/deb/debindexfile.cc @@ -305,7 +305,7 @@ pkgCache::PkgFileIterator debPackagesIndex::FindInCache(pkgCache &Cache) const pkgCache::PkgFileIterator File = Cache.FileBegin(); for (; File.end() == false; File++) { - if (FileName != File.FileName()) + if (File.FileName() == NULL || FileName != File.FileName()) continue; struct stat St; 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]; } |