Skip to content

Commit aa0ce78

Browse files
committed
Fixed memory leaks for attach-detach procedure
Fixed the memory leaks for mme_app timers Signed-off-by: rashmi <[email protected]>
1 parent a720f98 commit aa0ce78

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

lte/gateway/c/session_manager/sessiond_main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ int main(int argc, char* argv[]) {
134134

135135
auto directoryd_client = std::make_shared<magma::AsyncDirectorydClient>();
136136
std::thread directoryd_thread([&]() {
137-
MLOG(MINFO) << "Started pipelined response thread";
137+
MLOG(MINFO) << "Started directoryd response thread";
138138
directoryd_client->rpc_response_loop();
139139
});
140140

orc8r/gateway/c/common/logging/magma_logging.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
#include <glog/logging.h>
2424

2525
#define MLOG(VERBOSITY) VLOG(VERBOSITY)
26+
#define MLOG_IF(VERBOSITY, CONDITION) VLOG_IF(VERBOSITY, CONDITION)
2627

2728
namespace magma {
2829

0 commit comments

Comments
 (0)