Amine Khaldi : mapi32: Remove an unneeded assignment.

Alexandre Julliard julliard at winehq.org
Fri Dec 18 10:49:10 CST 2009


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

Author: Amine Khaldi <amine48rz at gmail.com>
Date:   Thu Dec 17 20:42:14 2009 +0100

mapi32: Remove an unneeded assignment.

---

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

diff --git a/dlls/mapi32/prop.c b/dlls/mapi32/prop.c
index 1a157da..5a7e8db 100644
--- a/dlls/mapi32/prop.c
+++ b/dlls/mapi32/prop.c
@@ -1835,7 +1835,7 @@ IMAPIProp_fnSetProps(LPMAPIPROP iface, ULONG ulValues,
         else
         {
             /* Add new value */
-            if (!(item = IMAPIPROP_AddValue(This, &lpProps[i])))
+            if (!IMAPIPROP_AddValue(This, &lpProps[i]))
                 hRet = MAPI_E_NOT_ENOUGH_MEMORY;
         }
     }




More information about the wine-cvs mailing list