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()
:inited(false)
,logfile(NULL)
,not_done(true)
,cur_length(0)
,max_length(0)
@ -46,7 +47,9 @@ logger_file::~logger_file() {
if(inited) {
wait_thread_finish();
flush();
fclose(logfile);
if (logfile) {
fclose(logfile);
}
}
}