Skip to content

Commit e659df5

Browse files
committed
Fix uninitialized buffer size variable
1 parent a145eb7 commit e659df5

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

Source/Processors/RecordNode/BinaryFormat/BinaryRecording.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
BinaryRecording::BinaryRecording()
88
{
9+
m_bufferSize = MAX_BUFFER_SIZE;
910
m_scaledBuffer.malloc(MAX_BUFFER_SIZE);
1011
m_intBuffer.malloc(MAX_BUFFER_SIZE);
1112
m_tsBuffer.malloc(MAX_BUFFER_SIZE);

0 commit comments

Comments
 (0)