summaryrefslogtreecommitdiff
path: root/src/components/application_manager/src/rpc_handler_impl.cc
diff options
context:
space:
mode:
authorShobhit Adlakha <ShobhitAd@users.noreply.github.com>2022-08-25 14:31:12 -0400
committerGitHub <noreply@github.com>2022-08-25 14:31:12 -0400
commit2d95d30926018bfbf0236b9c8bb89c763222cbba (patch)
tree469ada0aa415d9d5c018916be164201d3f28a9a8 /src/components/application_manager/src/rpc_handler_impl.cc
parent765246713dd54dca42ff6d4259fd984af9a71d92 (diff)
downloadsdl_core-2d95d30926018bfbf0236b9c8bb89c763222cbba.tar.gz
Core dump on ignition off when registering 20 apps (#3939)
* Add changes from luxoft PR * Address review comments * Apply suggestions from code review Co-authored-by: Jacob Keeler <jacob.keeler@livioradio.com> * Address review comments * Use sync_primitives::RecursiveLock instead of sync_primitives::Lock for extensions_lock_ Co-authored-by: Jacob Keeler <jacob.keeler@livioradio.com>
Diffstat (limited to 'src/components/application_manager/src/rpc_handler_impl.cc')
-rw-r--r--src/components/application_manager/src/rpc_handler_impl.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/application_manager/src/rpc_handler_impl.cc b/src/components/application_manager/src/rpc_handler_impl.cc
index b6b9f2e16b..3e0a600d72 100644
--- a/src/components/application_manager/src/rpc_handler_impl.cc
+++ b/src/components/application_manager/src/rpc_handler_impl.cc
@@ -212,7 +212,7 @@ void RPCHandlerImpl::Handle(const impl::MessageFromMobile message) {
SDL_LOG_ERROR("Null-pointer message received.");
return;
}
- if (app_manager_.is_stopping()) {
+ if (app_manager_.IsStopping()) {
SDL_LOG_INFO("Application manager is stopping");
return;
}