Kirill K. Smirnov : winhelp: Do not confuse caller application with bogus error when we really succeeded .

Alexandre Julliard julliard at winehq.org
Wed Dec 5 06:56:35 CST 2007


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

Author: Kirill K. Smirnov <lich at math.spbu.ru>
Date:   Wed Dec  5 00:39:04 2007 +0300

winhelp: Do not confuse caller application with bogus error when we really succeeded.

---

 programs/winhelp/winhelp.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/programs/winhelp/winhelp.c b/programs/winhelp/winhelp.c
index 44e640e..0b7e2dc 100644
--- a/programs/winhelp/winhelp.c
+++ b/programs/winhelp/winhelp.c
@@ -445,7 +445,8 @@ static LRESULT  WINHELP_HandleCommand(HWND hSrcWnd, LPARAM lParam)
             break;
         }
     }
-    return 0L;
+    /* Always return success for now */
+    return 1;
 }
 
 /******************************************************************




More information about the wine-cvs mailing list