diff options
author | David Kalnischkies <kalnischkies@gmail.com> | 2011-08-11 19:20:53 +0200 |
---|---|---|
committer | David Kalnischkies <kalnischkies@gmail.com> | 2011-08-11 19:20:53 +0200 |
commit | dd6882853b4555a6113740afca417acbaa060043 (patch) | |
tree | 5d05673e84fd0f9209642fa13d016345d9360ca1 /apt-pkg/tagfile.h | |
parent | b40b7c380acbdcd84338bdcd253df32f1ef79ed8 (diff) |
fix some cppcheck: (warning) Member variable is not initialized in the constructor.
Diffstat (limited to 'apt-pkg/tagfile.h')
-rw-r--r-- | apt-pkg/tagfile.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apt-pkg/tagfile.h b/apt-pkg/tagfile.h index 61491aa04..a101d7b1e 100644 --- a/apt-pkg/tagfile.h +++ b/apt-pkg/tagfile.h @@ -79,7 +79,7 @@ class pkgTagSection Stop = this->Stop; }; - pkgTagSection() : Section(0), Stop(0) {}; + pkgTagSection() : Section(0), TagCount(0), Stop(0) {}; }; class pkgTagFile |