Commit b22d4e45 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

ddeml: Don't trash 'cb' field of structure returned by DdeQueryConvInfo16() (Coverity).

parent bd9701ad
......@@ -496,6 +496,7 @@ UINT16 WINAPI DdeQueryConvInfo16(HCONV hConv, DWORD idTransaction,
ret = DdeQueryConvInfo(hConv, idTransaction, &ci32);
if (ret == 0) return 0;
ci16.cb = lpConvInfo->cb;
ci16.hUser = ci32.hUser;
ci16.hConvPartner = ci32.hConvPartner;
ci16.hszSvcPartner = ci32.hszSvcPartner;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment