Commit 2136b169 authored by Alexandre Julliard's avatar Alexandre Julliard

crypt32: Avoid printing pointer differences in traces.

parent bc9df953
...@@ -330,8 +330,7 @@ BOOL serialize(const struct protect_data_t *pInfo, DATA_BLOB *pSerial) ...@@ -330,8 +330,7 @@ BOOL serialize(const struct protect_data_t *pInfo, DATA_BLOB *pSerial)
if (ptr - pSerial->pbData != dwStruct) if (ptr - pSerial->pbData != dwStruct)
{ {
ERR("struct size changed!? %u != expected %u\n", ERR("struct size changed!? expected %u\n", dwStruct);
ptr - pSerial->pbData, dwStruct);
LocalFree(pSerial->pbData); LocalFree(pSerial->pbData);
pSerial->pbData=NULL; pSerial->pbData=NULL;
pSerial->cbData=0; pSerial->cbData=0;
......
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