From 0a8394c891a69740135f108f1032a9b48087a31b Mon Sep 17 00:00:00 2001 From: Christian Prochaska Date: Wed, 7 Apr 2021 06:59:02 +0200 Subject: [PATCH] depot_autopilot: store signal context capability as copy Fixes #4129 --- repos/gems/src/app/depot_autopilot/children.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/repos/gems/src/app/depot_autopilot/children.h b/repos/gems/src/app/depot_autopilot/children.h index f22d73152d..e9d645aab9 100644 --- a/repos/gems/src/app/depot_autopilot/children.h +++ b/repos/gems/src/app/depot_autopilot/children.h @@ -33,7 +33,7 @@ class Depot_deploy::Children Genode::Allocator &_alloc; Timer::Connection &_timer; - Genode::Signal_context_capability const &_config_handler; + Genode::Signal_context_capability const _config_handler; Local::Const_pointer _curr_child { }; List_model _children { }; @@ -79,7 +79,7 @@ class Depot_deploy::Children Children(Genode::Allocator &alloc, Timer::Connection &timer, - Genode::Signal_context_capability const &config_handler) + Genode::Signal_context_capability const config_handler) : _alloc { alloc }, _timer { timer },