Commit d6b2468f authored by Vincent Béron's avatar Vincent Béron Committed by Alexandre Julliard

Initialize a pointer before dereferencing it.

parent 23c4ccf9
......@@ -136,7 +136,7 @@ TW_UINT16 TWAIN_IdentityGetFirst (pTW_IDENTITY pOrigin, TW_MEMREF pData)
return TWRC_FAILURE;
#else
TW_UINT16 twRC = TWRC_SUCCESS;
pTW_IDENTITY pSourceIdentity;/* = (pTW_IDENTITY) pData;*/
pTW_IDENTITY pSourceIdentity = (pTW_IDENTITY) pData;
SANE_Status status;
TRACE ("DG_CONTROL/DAT_IDENTITY/MSG_GETFIRST\n");
......
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