Commit 0565164
authored
Clean up certifier SslData destructor (#12678)
Remove the commented-out debug statement from the SslData destructor.
This statement was commented out in PR #9792 as a stop-gap measure
because it was causing crashes during shutdown when accessing the
potentially-destroyed dbg_ctl static object. Let's close the associated
issue by just removing the commented out debug statement since it is
generally considered unsafe to log in a destructor precisely because of
its use of static structures which can surface order-dependent issues
like the one reported in #9794. That is, not logging in the destructor
is the correct solution, so let's just make @maskit's patch official.
Fixes: #97941 parent 734f992 commit 0565164
1 file changed
+2
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
106 | 106 | | |
107 | 107 | | |
108 | 108 | | |
109 | | - | |
110 | | - | |
| 109 | + | |
| 110 | + | |
111 | 111 | | |
112 | 112 | | |
113 | 113 | | |
| |||
0 commit comments