Browse Source

warning: cannot optimize loop, the loop counter may overflow [-Wunsafe-loop-optimizations]

Git-Dch: Ignore
Reported-By: gcc -Wunsafe-loop-optimizations
debian/1.8.y
David Kalnischkies 10 years ago
parent
commit
ef74268b47
  1. 2
      apt-pkg/contrib/strutl.cc
  2. 4
      apt-pkg/pkgcachegen.cc

2
apt-pkg/contrib/strutl.cc

@ -1184,7 +1184,7 @@ unsigned long RegexChoice(RxChoiceList *Rxs,const char **ListBegin,
R->Hit = false;
unsigned long Hits = 0;
for (; ListBegin != ListEnd; ListBegin++)
for (; ListBegin < ListEnd; ++ListBegin)
{
// Check if the name is a regex
const char *I;

4
apt-pkg/pkgcachegen.cc

@ -1249,10 +1249,10 @@ static bool CheckValidity(const string &CacheFile,
static unsigned long ComputeSize(FileIterator Start,FileIterator End)
{
unsigned long TotalSize = 0;
for (; Start != End; ++Start)
for (; Start < End; ++Start)
{
if ((*Start)->HasPackages() == false)
continue;
continue;
TotalSize += (*Start)->Size();
}
return TotalSize;

Loading…
Cancel
Save