Skip to content

Commit

Permalink
Fix: parodus crash with rdk_dbg_MsgRaw call stack
Browse files Browse the repository at this point in the history
SHARMAN-2314: Observing Parodus crash in function _fini rdk_dbg_MsgRaw during multiple reboot execution, Adding rdk_logger_deinit() while parodus shutdown.
  • Loading branch information
nlrcomcast committed Feb 14, 2024
1 parent 896a61e commit f1c2be6
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/conn_interface.c
Original file line number Diff line number Diff line change
Expand Up @@ -231,8 +231,10 @@ void createSocketConnection(void (* initKeypress)())
nopoll_cleanup_library();
curl_global_cleanup();
clear_metadata();
//disabling it due to local pc build failure
//rdk_logger_deinit();
//enabled for yocto buid, disabling for local pc due to build failure
if (BUILD_YOCTO)
rdk_logger_deinit();
endif (BUILD_YOCTO)
free_server_list(&server_list);
}

Expand Down

0 comments on commit f1c2be6

Please sign in to comment.