Skip to content

Commit 27f300b

Browse files
committed
Fix dangling pointer
The address of the local variable controller is still referenced to by the static variable controller_ after run() is executed and controller has been deallocated.
1 parent f297efd commit 27f300b

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

bandit/controller.h

+8
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,10 @@ namespace bandit {
146146
get_controller_address() = controller;
147147
}
148148

149+
static void deregister_controller() {
150+
get_controller_address() = nullptr;
151+
}
152+
149153
static controller_t& registered_controller() {
150154
auto controller = get_controller_address();
151155
throw_if_nullptr(controller, "controller", "bandit::detail::register_controller()");
@@ -201,6 +205,10 @@ namespace bandit {
201205
controller_t::register_controller(controller);
202206
}
203207

208+
inline void deregister_controller() {
209+
controller_t::deregister_controller();
210+
}
211+
204212
inline controller_t& registered_controller() {
205213
return controller_t::registered_controller();
206214
}

bandit/runner.h

+4-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,10 @@ namespace bandit {
110110
controller.set_policy(new run_policy::bandit(opt.filter_chain(), opt.break_on_failure(), opt.dry_run()));
111111

112112
detail::register_controller(&controller);
113-
return run(opt, detail::specs());
113+
int result = run(opt, detail::specs());
114+
detail::deregister_controller();
115+
116+
return result;
114117
}
115118

116119
inline int run(int argc, char* argv[], bool allow_further = true) {

0 commit comments

Comments
 (0)