summaryrefslogtreecommitdiff
path: root/apt-pkg/tagfile.h
diff options
context:
space:
mode:
authorMichael Vogt <mvo@debian.org>2013-08-05 22:40:28 +0200
committerMichael Vogt <mvo@debian.org>2013-08-05 22:40:28 +0200
commit4ccd3b3ce69d6a6598e1773689a44fdec78a85cc (patch)
tree3cc7a8172109c69fa6fdd10296932a6aa152f595 /apt-pkg/tagfile.h
parent163dc55bd6891008adcdf6d683a94e890a00f8c7 (diff)
fix some unitialized data members
Diffstat (limited to 'apt-pkg/tagfile.h')
-rw-r--r--apt-pkg/tagfile.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/apt-pkg/tagfile.h b/apt-pkg/tagfile.h
index 4718f5101..126f4219d 100644
--- a/apt-pkg/tagfile.h
+++ b/apt-pkg/tagfile.h
@@ -84,7 +84,7 @@ class pkgTagSection
Stop = this->Stop;
};
- pkgTagSection() : Section(0), TagCount(0), Stop(0) {};
+ pkgTagSection() : Section(0), TagCount(0), Stop(0), d(NULL) {};
virtual ~pkgTagSection() {};
};