diff options
author | albert-github <albert.tests@gmail.com> | 2019-12-02 13:23:25 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2019-12-02 13:23:25 (GMT) |
commit | ef06c8d14c7889e723331601ac847cc481966f5c (patch) | |
tree | f95298a5b676b41d3bdf72f2c17f7765b5cb7948 /addon/doxmlparser/src/compoundhandler.cpp | |
parent | 9b14bf58c30a02ef19abebec280568532dc58ed4 (diff) | |
download | Doxygen-ef06c8d14c7889e723331601ac847cc481966f5c.zip Doxygen-ef06c8d14c7889e723331601ac847cc481966f5c.tar.gz Doxygen-ef06c8d14c7889e723331601ac847cc481966f5c.tar.bz2 |
Coverity uninitialized
Fixing a number of uninitialized variables based on the coverity output of November 30, 2019
Diffstat (limited to 'addon/doxmlparser/src/compoundhandler.cpp')
-rw-r--r-- | addon/doxmlparser/src/compoundhandler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/addon/doxmlparser/src/compoundhandler.cpp b/addon/doxmlparser/src/compoundhandler.cpp index 077c8fb..69fb70c 100644 --- a/addon/doxmlparser/src/compoundhandler.cpp +++ b/addon/doxmlparser/src/compoundhandler.cpp @@ -86,7 +86,7 @@ class CompoundIdIterator : public ICompoundIterator, { delete this; } private: - const MainHandler *m_mainHandler; + const MainHandler *m_mainHandler = 0; }; //---------------------------------------------------------------------------- |