Add missing RegCloseKey to Sys_SteamPath

This commit is contained in:
Max Crofts 2017-04-07 15:18:28 +10:00
parent d7a99d5d44
commit f5143405f1

View file

@ -148,6 +148,8 @@ char *Sys_SteamPath( void )
pathLen = MAX_OSPATH; pathLen = MAX_OSPATH;
if (RegQueryValueEx(steamRegKey, "InstallLocation", NULL, NULL, (LPBYTE)steamPath, &pathLen)) if (RegQueryValueEx(steamRegKey, "InstallLocation", NULL, NULL, (LPBYTE)steamPath, &pathLen))
steamPath[0] = '\0'; steamPath[0] = '\0';
RegCloseKey(steamRegKey);
} }
#endif #endif
@ -161,6 +163,8 @@ char *Sys_SteamPath( void )
if (steamPath[0]) if (steamPath[0])
finishPath = qtrue; finishPath = qtrue;
RegCloseKey(steamRegKey);
} }
#endif #endif