diff options
author | Michael Vogt <mvo@debian.org> | 2013-08-05 22:37:39 +0200 |
---|---|---|
committer | Michael Vogt <mvo@debian.org> | 2013-08-05 22:37:39 +0200 |
commit | dbcf60b2c314521ab809d50d228c0c98ce8f6915 (patch) | |
tree | 83ac6e7d6fd65c8986a5c667e55151daadf0bd9e /python/pkgmanager.cc | |
parent | e993aa1d28923deede2387d58d5fa123ad79d6c4 (diff) | |
download | python-apt-dbcf60b2c314521ab809d50d228c0c98ce8f6915.tar.gz |
coverity fixes
Diffstat (limited to 'python/pkgmanager.cc')
-rw-r--r-- | python/pkgmanager.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/pkgmanager.cc b/python/pkgmanager.cc index f51dbbbc..9a5d0e5b 100644 --- a/python/pkgmanager.cc +++ b/python/pkgmanager.cc @@ -203,7 +203,7 @@ public: bool callConfigure(PkgIterator Pkg) { return pkgDPkgPM::Configure(Pkg); } pkgOrderList *getOrderList() { return pkgPackageManager::List; } - PyPkgManager(pkgDepCache *Cache) : pkgDPkgPM(Cache) {}; + PyPkgManager(pkgDepCache *Cache) : pkgDPkgPM(Cache),pyinst(NULL) {}; PyObject *pyinst; }; |