Hugh McMaster : regedit: Add a missing 'break' statement (Coverity).

Alexandre Julliard julliard at winehq.org
Mon May 1 16:38:04 CDT 2017


Module: wine
Branch: master
Commit: 85e34436cde08ddfb07f21d395c0cef82633c6c7
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=85e34436cde08ddfb07f21d395c0cef82633c6c7

Author: Hugh McMaster <hugh.mcmaster at outlook.com>
Date:   Mon May  1 09:30:21 2017 +0000

regedit: Add a missing 'break' statement (Coverity).

Signed-off-by: Hugh McMaster <hugh.mcmaster at outlook.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 programs/regedit/childwnd.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/programs/regedit/childwnd.c b/programs/regedit/childwnd.c
index 6ee0cdb..b20ff9a 100644
--- a/programs/regedit/childwnd.c
+++ b/programs/regedit/childwnd.c
@@ -381,6 +381,7 @@ LRESULT CALLBACK ChildWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lPa
             TrackPopupMenu(GetSubMenu(hPopupMenus, PM_NEW), TPM_RIGHTBUTTON,
                            pt.x, pt.y, 0, hFrameWnd, NULL);
         }
+        break;
     }
 
     case WM_KEYDOWN:




More information about the wine-cvs mailing list