From fc15861a405a0b0483bb8989e6a43215a86dba55 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Thu, 28 Jul 2011 16:56:33 +0200 Subject: releasing version 0.8.15.5 --- debian/changelog | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index 3f723f2d6..8797117a7 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,10 +1,10 @@ -apt (0.8.15.5) UNRELEASED; urgency=low +apt (0.8.15.5) unstable; urgency=low [ David Kalnischkies ] * apt-pkg/deb/deblistparser.cc: - do not assume that the last char on a line is a \n (Closes: #633350) - -- David Kalnischkies Wed, 27 Jul 2011 23:25:45 +0200 + -- Michael Vogt Thu, 28 Jul 2011 16:49:15 +0200 apt (0.8.15.4) unstable; urgency=low -- cgit v1.2.3 From 77de0e831a12aedde05ff6bff8fb07dcbb4074ad Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Mon, 1 Aug 2011 12:57:04 +0200 Subject: apt-pkg/pkgcachegen.cc: copy Arch to avoid segfault on cache remap --- apt-pkg/pkgcachegen.cc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/apt-pkg/pkgcachegen.cc b/apt-pkg/pkgcachegen.cc index efd764b51..2bfb77609 100644 --- a/apt-pkg/pkgcachegen.cc +++ b/apt-pkg/pkgcachegen.cc @@ -636,7 +636,9 @@ bool pkgCacheGenerator::FinishCache(OpProgress *Progress) Dynamic DynV(V); for (; V.end() != true; V++) { - char const * const Arch = P.Arch(); + // copy P.Arch() into a string here as a cache remap + // in NewDepends() later may alter the pointer location + string Arch = P.Arch() == NULL ? "" : P.Arch(); map_ptrloc *OldDepLast = NULL; /* MultiArch handling introduces a lot of implicit Dependencies: - MultiArch: same → Co-Installable if they have the same version -- cgit v1.2.3