You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The function pev_cm_mnbc_sound is setting the wrong indicate->MSVarField.CNT due post-decrement operator inside the while condition, what is causing the CNT field to be one below the expected value.
As a suggestion, just replace the while(sound--){} for do{ ...}while(sound--);
The text was updated successfully, but these errors were encountered:
The function
pev_cm_mnbc_sound
is setting the wrongindicate->MSVarField.CNT
due post-decrement operator inside the while condition, what is causing theCNT
field to be one below the expected value.As a suggestion, just replace the
while(sound--){}
fordo{ ...}while(sound--);
The text was updated successfully, but these errors were encountered: