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
Follow up commit for wl#9306, fix for compilation warnings on OSX
Description:
OSX doesn't detect properly that "msgid" variable is properly
initialized in one of sub-calls.
Solution:
Changed the source code to be better understandable for the
compiler, from:
while(!stop) { ... }
to:
do { ... } while(!stop);
Reviewed-by: Andrzej Religa <[email protected]>
0 commit comments