diff options
author | Noel Grandin <noel@peralex.com> | 2014-07-18 13:49:17 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-07-18 14:24:19 +0200 |
commit | 21e3f143ab54028ffb2f609bb9cf7ef69ed638be (patch) | |
tree | 9483e9c3781826ad750863cd8baebe74d57c4367 /store | |
parent | a517898052a739433759e23aada84c7d11b727a7 (diff) |
cid#1226495 Uninitialized scalar field
Change-Id: I5f05fc312032c50639f147f27353aa560a69f65a
Diffstat (limited to 'store')
-rw-r--r-- | store/source/object.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/store/source/object.hxx b/store/source/object.hxx index 2b93a6f90a6a..31f827fe8147 100644 --- a/store/source/object.hxx +++ b/store/source/object.hxx @@ -65,7 +65,7 @@ class OStoreObject : public store::IStoreHandle public: /** Construction. */ - OStoreObject() {} + OStoreObject() : m_nRefCount(0) {} /** IStoreHandle. */ |