Rob Shearman : rpcrt4: Add a missing break in DllMain.

Alexandre Julliard julliard at winehq.org
Sat Dec 8 13:43:44 CST 2007


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

Author: Rob Shearman <rob at codeweavers.com>
Date:   Sat Dec  8 17:14:30 2007 +0000

rpcrt4: Add a missing break in DllMain.

---

 dlls/rpcrt4/rpcrt4_main.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/dlls/rpcrt4/rpcrt4_main.c b/dlls/rpcrt4/rpcrt4_main.c
index d557664..d9efe9a 100644
--- a/dlls/rpcrt4/rpcrt4_main.c
+++ b/dlls/rpcrt4/rpcrt4_main.c
@@ -191,6 +191,7 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
                 ERR("tdata->connection should be NULL but is still set to %p\n", tdata);
             HeapFree(GetProcessHeap(), 0, tdata);
         }
+        break;
 
     case DLL_PROCESS_DETACH:
         CloseHandle(master_mutex);




More information about the wine-cvs mailing list