We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d3ce5e commit 314740dCopy full SHA for 314740d
src/native/common/include/runtime-base/timing-internal.hh
@@ -65,7 +65,7 @@ namespace xamarin::android {
65
time_point start;
66
time_point end;
67
TimingEventKind kind;
68
- std::unique_ptr<std::string> more_info;
+ std::unique_ptr<std::string> more_info{};
69
};
70
71
class FastTiming;
@@ -301,7 +301,9 @@ namespace xamarin::android {
301
ev.start = get_time ();
302
ev.kind = kind;
303
ev.before_managed = MonodroidState::is_startup_in_progress ();
304
- ev.more_info = nullptr;
+ if (ev.more_info) {
305
+ ev.more_info.reset ();
306
+ }
307
log_warn (LOG_DEFAULT, "#grendel 5.011");
308
}
309
0 commit comments