Fix potential nullref throw on failed startup

This commit is contained in:
Dean Herbert
2021-09-16 22:48:09 +09:00
parent b399f910e4
commit edb1230111
2 changed files with 6 additions and 3 deletions

View File

@ -163,8 +163,11 @@ namespace osu.Game.Database
public void FlushConnections()
{
foreach (var context in threadContexts.Values)
context.Dispose();
if (threadContexts != null)
{
foreach (var context in threadContexts.Values)
context.Dispose();
}
recycleThreadContexts();
}