From 5a855bdb2f263c143c54c0f37609aaa22e61c281 Mon Sep 17 00:00:00 2001
From: bunnei <bunneidev@gmail.com>
Date: Mon, 27 Apr 2015 22:46:19 -0400
Subject: [PATCH] CoreTiming: Initialize static variables at bootup.

---
 src/core/core_timing.cpp | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/src/core/core_timing.cpp b/src/core/core_timing.cpp
index 6f716b1caf..f70c84c3de 100644
--- a/src/core/core_timing.cpp
+++ b/src/core/core_timing.cpp
@@ -160,6 +160,16 @@ void Init() {
     last_global_time_us = 0;
     has_ts_events = 0;
     mhz_change_callbacks.clear();
+
+    first = nullptr;
+    ts_first = nullptr;
+    ts_last = nullptr;
+
+    event_pool = nullptr;
+    event_ts_pool = nullptr;
+    allocated_ts_events = 0;
+
+    advance_callback = nullptr;
 }
 
 void Shutdown() {