2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 09:47:43 +00:00

Fix CIOWinManager crash when attempting to distribute messages

This commit is contained in:
2017-01-27 01:21:02 -08:00
parent b7d2ae45f7
commit 8292e8abaa
5 changed files with 157 additions and 168 deletions

View File

@@ -16,7 +16,7 @@ class CIOWinManager
{
std::shared_ptr<CIOWin> x0_iowin;
int x4_prio;
CIOWinManager::IOWinPQNode* x8_next;
CIOWinManager::IOWinPQNode* x8_next = nullptr;
IOWinPQNode(std::weak_ptr<CIOWin> iowin, int prio,
CIOWinManager::IOWinPQNode* next)
: x0_iowin(iowin), x4_prio(prio), x8_next(next) {}