(cherry picked from commit 0b9c20cc7086000548e02b39c1abf94ffb56feae)
This commit is contained in:
James R 2020-05-13 17:52:49 -07:00
parent e8a2397dea
commit bd3ea52cba

View file

@ -8609,19 +8609,19 @@ static void
Check_new_version_thread (int *id) Check_new_version_thread (int *id)
{ {
int hosting; int hosting;
int ok; int okay;
ok = 0; okay = 0;
if (M_CheckMODVersion(*id)) if (M_CheckMODVersion(*id))
{ {
I_lock_mutex(&ms_QueryId_mutex); I_lock_mutex(&ms_QueryId_mutex);
{ {
ok = ( *id == ms_QueryId ); okay = ( *id == ms_QueryId );
} }
I_unlock_mutex(ms_QueryId_mutex); I_unlock_mutex(ms_QueryId_mutex);
if (ok) if (okay)
{ {
I_lock_mutex(&m_menu_mutex); I_lock_mutex(&m_menu_mutex);
{ {
@ -8637,12 +8637,12 @@ Check_new_version_thread (int *id)
{ {
I_lock_mutex(&ms_QueryId_mutex); I_lock_mutex(&ms_QueryId_mutex);
{ {
ok = ( *id == ms_QueryId ); okay = ( *id == ms_QueryId );
} }
I_unlock_mutex(ms_QueryId_mutex); I_unlock_mutex(ms_QueryId_mutex);
} }
if (ok) if (okay)
{ {
I_lock_mutex(&m_menu_mutex); I_lock_mutex(&m_menu_mutex);
{ {