diff --git a/client/win/win_screensaver.cpp b/client/win/win_screensaver.cpp index 22892177a7..b72fce0237 100755 --- a/client/win/win_screensaver.cpp +++ b/client/win/win_screensaver.cpp @@ -1629,7 +1629,7 @@ VOID CScreensaver::InterruptSaver() { if (m_bIs9x && m_SaverMode == sm_full) { // If no VerifyPassword function, then no password is set // or we're not on 9x. - if (gspfnMyVerifyPwdProc != NULL) { + if (gspfnMyVerifyPwdProc) { m_bCheckingSaverPassword = TRUE; bPasswordOkay = gspfnMyVerifyPwdProc(m_hWnd); @@ -1650,6 +1650,7 @@ VOID CScreensaver::InterruptSaver() { + // Update the box that shows the error message // VOID CScreensaver::UpdateErrorBox() {