Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.11 20 lines 679 B view raw
1diff --git a/test/Glacier2/dynamicFiltering/TestControllerI.h b/test/Glacier2/dynamicFiltering/TestControllerI.h 2index 7e21639..1279200 100644 3--- a/test/Glacier2/dynamicFiltering/TestControllerI.h 4+++ b/test/Glacier2/dynamicFiltering/TestControllerI.h 5@@ -21,13 +21,12 @@ struct SessionTuple 6 { 7 Glacier2::SessionPrx session; 8 Glacier2::SessionControlPrx sessionControl; 9- bool configured; 10+ bool configured = false; 11 12 SessionTuple() {} 13 SessionTuple(Glacier2::SessionPrx s, Glacier2::SessionControlPrx control): 14 session(s), 15- sessionControl(control), 16- configured(false) 17+ sessionControl(control) 18 {} 19 20 SessionTuple&