From: Michael Vogt Date: Wed, 19 Oct 2005 12:34:19 +0000 (+0000) Subject: * fix segfault when there is no Archive for a VerFile X-Git-Tag: 0.7.21~361 X-Git-Url: https://git.saurik.com/apt.git/commitdiff_plain/d87116efb8c7382cc463f5208277470fce129d12?ds=inline * fix segfault when there is no Archive for a VerFile --- diff --git a/cmdline/apt-get.cc b/cmdline/apt-get.cc index 82f202103..3ffb740a6 100644 --- a/cmdline/apt-get.cc +++ b/cmdline/apt-get.cc @@ -1227,7 +1227,7 @@ pkgSrcRecords::Parser *FindSrc(const char *Name,pkgRecords &Recs, continue; //std::cout << VF.File().Archive() << std::endl; - if(VF.File().Archive() == DefRel) + if(VF.File().Archive() && (VF.File().Archive() == DefRel)) { VerTag = Ver.VerStr(); break;