fix when accessing uninitialized file

This commit is contained in:
Andre Puschmann 2018-02-21 15:50:22 +01:00
parent 8fcf25360e
commit 20e6ed102e
1 changed files with 4 additions and 1 deletions

View File

@ -35,6 +35,7 @@ namespace srslte{
logger_file::logger_file() logger_file::logger_file()
:inited(false) :inited(false)
,logfile(NULL)
,not_done(true) ,not_done(true)
,cur_length(0) ,cur_length(0)
,max_length(0) ,max_length(0)
@ -46,7 +47,9 @@ logger_file::~logger_file() {
if(inited) { if(inited) {
wait_thread_finish(); wait_thread_finish();
flush(); flush();
fclose(logfile); if (logfile) {
fclose(logfile);
}
} }
} }