Skip to content

Commit c198b32

Browse files
committed
Fix Coverity CID 468122
Missing break statement in a switch intoduced by commit 54acca4 The results of this are benign, as the extra code which is run is unlikely to do anything.
1 parent 857a5bd commit c198b32

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

xrdp/xrdp_wm.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2148,6 +2148,7 @@ callback(intptr_t id, int msg, intptr_t param1, intptr_t param2,
21482148
xrdp_mm_suppress_output(wm->mm, param1,
21492149
LOWORD(param2), HIWORD(param2),
21502150
LOWORD(param3), HIWORD(param3));
2151+
break;
21512152
case 0x555a:
21522153
// "yeah, up_and_running"
21532154
xrdp_mm_up_and_running(wm->mm);

0 commit comments

Comments
 (0)