Juan Lang wrote:
- TRACE_(dmfileraw)(": data (size = 0x%08lX): '%s'\n", *pcbRead,
debugstr_an(pv, *pcbRead));
- TRACE_(dmfileraw)(": data (size = 0x%08lX): '%s'\n", cb,
debugstr_an(pv, *pcbRead));
Should that be: TRACE_(dmfileraw)(": data (size = 0x%08lX): '%s'\n", cb, debugstr_an(pv, cb)); instead?
--Juan
Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com
You are right. I failed to notice the second use of the suspicious pointer. Here is a corrected patch.
Alex Villacís Lasso