Skip to content

Commit

Permalink
Add missing initialization.
Browse files Browse the repository at this point in the history
  • Loading branch information
alja authored and osschar committed Mar 9, 2016
1 parent a0c5e5c commit 9703af0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/XrdFileCache/XrdFileCacheInfo.cc
Expand Up @@ -39,7 +39,8 @@ using namespace XrdFileCache;
Info::Info(long long iBufferSize) :
m_version(0),
m_bufferSize(iBufferSize),
m_sizeInBits(0), m_buff_fetched(0), m_buff_write_called(0),
m_sizeInBits(0),
m_buff_fetched(0), m_buff_write_called(0), m_buff_prefetch(0),
m_accessCnt(0),
m_complete(false)
{
Expand Down

0 comments on commit 9703af0

Please sign in to comment.