From: Michael Vogt Date: Thu, 8 Apr 2010 18:57:01 +0000 (+0200) Subject: * cmdline/apt-get.cc: X-Git-Tag: 0.8.0~9^2~60 X-Git-Url: https://git.saurik.com/apt.git/commitdiff_plain/259f688a29728604d7930662e9743619982706ab?hp=-c * cmdline/apt-get.cc: - fix crash when pkg.VersionList() is empty --- 259f688a29728604d7930662e9743619982706ab diff --git a/cmdline/apt-get.cc b/cmdline/apt-get.cc index 62f712c39..cd450b27a 100644 --- a/cmdline/apt-get.cc +++ b/cmdline/apt-get.cc @@ -1304,6 +1304,10 @@ pkgSrcRecords::Parser *FindSrc(const char *Name,pkgRecords &Recs, break; fuzzy = true; Ver = Pkg.VersionList(); + // exit right away from the Pkg.VersionList() loop if we + // don't have any versions + if (Ver.end() == true) + break; } // We match against a concrete version (or a part of this version) if (VerTag.empty() == false && diff --git a/debian/changelog b/debian/changelog index edc82e1d7..9e3223abf 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +apt (0.7.26~exp4) UNRELEASEDexperimental; urgency=low + + * cmdline/apt-get.cc: + - fix crash when pkg.VersionList() is empty + + -- Michael Vogt Thu, 08 Apr 2010 20:56:30 +0200 + apt (0.7.26~exp3) experimental; urgency=low [ Christian Perrier ]