diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-03-14 15:57:40 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-03-14 15:58:27 +0000 |
commit | 85543a2700bcb3100f07851b3173b3f218cadff0 (patch) | |
tree | 24fce2565435c161b5ecb96d21d62a23aef5f5f9 | |
parent | a5cbf154df2e8d77f4971f5dafa76e9f8fcc9ca7 (diff) |
coverity#708238 Uninitialized pointer field
Change-Id: I83552efc825d54da9e00d4a9a637118565bd30ca
-rw-r--r-- | stoc/source/corereflection/lrucache.hxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/stoc/source/corereflection/lrucache.hxx b/stoc/source/corereflection/lrucache.hxx index a4292a1d4b5a..16ca8aecc430 100644 --- a/stoc/source/corereflection/lrucache.hxx +++ b/stoc/source/corereflection/lrucache.hxx @@ -97,6 +97,8 @@ inline LRU_Cache< t_Key, t_Val, t_KeyHash, t_KeyEqual >::LRU_Cache( sal_Int32 nC : _nCachedElements( nCachedElements ) #endif , _pBlock( 0 ) + , _pHead( 0 ) + , _pTail( 0 ) { if (_nCachedElements > 0) { |