diff options
author | Michael Vogt <mvo@debian.org> | 2015-04-07 12:20:56 +0200 |
---|---|---|
committer | Michael Vogt <mvo@debian.org> | 2015-04-07 12:30:32 +0200 |
commit | 991e4fbd6b997db5e1af04510789351043d60d34 (patch) | |
tree | 843c61224d26c55ee0e4eac110e1114642005fb9 | |
parent | 765707db37806d36e67a6a06c5301fe383f32afc (diff) |
Fix crash in pkgDPkgPM::WriteApportReport(() (LP: #1436626)
-rw-r--r-- | apt-pkg/deb/dpkgpm.cc | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/apt-pkg/deb/dpkgpm.cc b/apt-pkg/deb/dpkgpm.cc index e23ca466d..b187efb40 100644 --- a/apt-pkg/deb/dpkgpm.cc +++ b/apt-pkg/deb/dpkgpm.cc @@ -1900,8 +1900,19 @@ void pkgDPkgPM::WriteApportReport(const char *pkgpath, const char *errormsg) } } - // log the ordering - const char *ops_str[] = {"Install", "Configure","Remove","Purge"}; + // log the ordering, see dpkgpm.h and the "Ops" enum there + const char *ops_str[] = { + "Install", + "Configure", + "Remove", + "Purge", + "ConfigurePending", + "TriggersPending", + "reserved-1", + "reserved-2", + "reserved-3", + "reserved-4", + }; fprintf(report, "AptOrdering:\n"); for (vector<Item>::iterator I = List.begin(); I != List.end(); ++I) if ((*I).Pkg != NULL) |