Module: wine Branch: master Commit: 5ce4caf8f35530df0b7bfe052e36b635e13fb651 URL: http://source.winehq.org/git/wine.git/?a=commit;h=5ce4caf8f35530df0b7bfe052e...
Author: Amine Khaldi amine48rz@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; } }