Skip to content

Commit

Permalink
Fix missing initialization of variable.
Browse files Browse the repository at this point in the history
Fixes #13412.

Signed-off-by: David Hampton <mythtv@love2code.net>
  • Loading branch information
kmdewaal authored and linuxdude42 committed Feb 27, 2019
1 parent 13a2bd3 commit 6fae9af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/libs/libmythbase/threadedfilewriter.h
Expand Up @@ -76,7 +76,7 @@ class MBASE_PUBLIC ThreadedFileWriter
int m_fd {-1};

// state
bool m_flush; // protected by buflock
bool m_flush {false}; // protected by buflock
bool m_in_dtor {false}; // protected by buflock
bool m_ignore_writes {false}; // protected by buflock
uint m_tfw_min_write_size {kMinWriteSize}; // protected by buflock
Expand Down

0 comments on commit 6fae9af

Please sign in to comment.