Skip to content

Commit

Permalink
Fix members not being initialized in constructor
Browse files Browse the repository at this point in the history
(cherry picked from commit bda5e42)
  • Loading branch information
kurthindenburg committed Apr 26, 2014
1 parent 6a3d6c7 commit 5453b15
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/History.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,10 @@ void* CompactHistoryLine::operator new(size_t size, CompactHistoryBlockList& blo

CompactHistoryLine::CompactHistoryLine(const TextLine& line, CompactHistoryBlockList& bList)
: _blockListRef(bList),
_formatLength(0)
_formatArray(0),
_text(0),
_formatLength(0),
_wrapped(false)
{
_length = line.size();

Expand Down

0 comments on commit 5453b15

Please sign in to comment.