diff options
author | Michael Vogt <mvo@debian.org> | 2013-08-06 09:13:27 +0200 |
---|---|---|
committer | Michael Vogt <mvo@debian.org> | 2013-08-06 09:13:27 +0200 |
commit | b40394c0ff509954c37254b0993a985ea3ff1467 (patch) | |
tree | 908f5d4ba931cdf66843e8c9c3eae1a32e078e08 /apt-pkg/tagfile.cc | |
parent | afc2891fdac29848826a7f9cdeb22ce0c2409350 (diff) |
memset() pkgTagSections data to make coverity happy
Diffstat (limited to 'apt-pkg/tagfile.cc')
-rw-r--r-- | apt-pkg/tagfile.cc | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/apt-pkg/tagfile.cc b/apt-pkg/tagfile.cc index 1c79ee74f..83c1a9a55 100644 --- a/apt-pkg/tagfile.cc +++ b/apt-pkg/tagfile.cc @@ -218,6 +218,16 @@ bool pkgTagFile::Jump(pkgTagSection &Tag,unsigned long long Offset) return true; } /*}}}*/ +// pkgTagSection::pkgTagSection - Constructor /*{{{*/ +// --------------------------------------------------------------------- +/* */ +pkgTagSection::pkgTagSection() + : Section(0), TagCount(0), Stop(0), d(NULL) +{ + memset(&Indexes, 0, sizeof(Indexes)); + memset(&AlphaIndexes, 0, sizeof(AlphaIndexes)); +} + /*}}}*/ // TagSection::Scan - Scan for the end of the header information /*{{{*/ // --------------------------------------------------------------------- /* This looks for the first double new line in the data stream. |