Marcus Meissner : shdocvw: Removed useless array for NULL check (Coverity).

Alexandre Julliard julliard at winehq.org
Tue Mar 15 11:33:57 CDT 2011


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

Author: Marcus Meissner <meissner at suse.de>
Date:   Tue Mar 15 02:17:15 2011 +0100

shdocvw: Removed useless array for NULL check (Coverity).

---

 dlls/shdocvw/iexplore.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/shdocvw/iexplore.c b/dlls/shdocvw/iexplore.c
index 9d8668e..aebe7c9 100644
--- a/dlls/shdocvw/iexplore.c
+++ b/dlls/shdocvw/iexplore.c
@@ -528,7 +528,7 @@ static LRESULT iewnd_OnNotify(InternetExplorer *This, WPARAM wparam, LPARAM lpar
     {
         NMCBEENDEDITW* info = (NMCBEENDEDITW*)lparam;
 
-        if(info->fChanged && info->iWhy == CBENF_RETURN && info->szText)
+        if(info->fChanged && info->iWhy == CBENF_RETURN)
         {
             VARIANT vt;
 




More information about the wine-cvs mailing list