summaryrefslogtreecommitdiff
path: root/apt-pkg/algorithms.h
diff options
context:
space:
mode:
authorMarius Vollmer <marius.vollmer@nokia.com>2012-05-15 21:17:08 +0200
committerDavid Kalnischkies <kalnischkies@gmail.com>2012-05-15 21:17:08 +0200
commitb270388bef045df8c1b364338f545791bba222c1 (patch)
treed8804b1fc077057a82bbf02dcf4803024f758491 /apt-pkg/algorithms.h
parent8221431757c775ee875a061b184b5f6f2330f928 (diff)
* apt-pkg/algorithms.cc:
- fix memory leak of Flags in pkgSimulate by a proper destructor
Diffstat (limited to 'apt-pkg/algorithms.h')
-rw-r--r--apt-pkg/algorithms.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/apt-pkg/algorithms.h b/apt-pkg/algorithms.h
index 076542c20..aff8a68f2 100644
--- a/apt-pkg/algorithms.h
+++ b/apt-pkg/algorithms.h
@@ -78,6 +78,7 @@ private:
public:
pkgSimulate(pkgDepCache *Cache);
+ ~pkgSimulate();
};
/*}}}*/
class pkgProblemResolver /*{{{*/