Kaydet (Commit) a5cbf154 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#708240 Uninitialized pointer field

Change-Id: I127cfc84412984e9c190f3e5b2e37cf76ebf82f1
üst 3dd8bab3
...@@ -127,6 +127,7 @@ inline lru_cache< t_key, t_val, t_hashKey, t_equalKey >::lru_cache( ...@@ -127,6 +127,7 @@ inline lru_cache< t_key, t_val, t_hashKey, t_equalKey >::lru_cache(
::std::size_t size ) SAL_THROW(()) ::std::size_t size ) SAL_THROW(())
: m_size( 0 ) : m_size( 0 )
, m_block( 0 ) , m_block( 0 )
, m_tail( 0 )
{ {
setSize( size ); setSize( size );
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment