On 03/14/2010 11:03 AM, Andrew Nguyen wrote:
dlls/dxdiagn/container.c | 15 +++++------ dlls/dxdiagn/tests/container.c | 49 ++++++++++++++++++++++++++++++++++++++++ 2 files changed, 56 insertions(+), 8 deletions(-)
TRACE("(%p, %u, %s, %u)\n", iface, dwIndex, debugstr_w(pwszContainer), cchContainer);
if (NULL == pwszContainer) {
- TRACE("(%p, %u, %p, %u)\n", iface, dwIndex, pwszContainer, cchContainer);
- if (NULL == pwszContainer || 0 == cchContainer) { return E_INVALIDARG; }
Please add printing of debugstr_w(pwszContainer) back, after sanity checks. It's something really useful to know.
On Sun, Mar 14, 2010 at 3:05 PM, Vitaliy Margolen wine-devel@kievinfo.com wrote:
On 03/14/2010 11:03 AM, Andrew Nguyen wrote:
dlls/dxdiagn/container.c | 15 +++++------ dlls/dxdiagn/tests/container.c | 49 ++++++++++++++++++++++++++++++++++++++++ 2 files changed, 56 insertions(+), 8 deletions(-)
TRACE("(%p, %u, %s, %u)\n", iface, dwIndex, debugstr_w(pwszContainer), cchContainer);
if (NULL == pwszContainer) {
- TRACE("(%p, %u, %p, %u)\n", iface, dwIndex, pwszContainer, cchContainer);
- if (NULL == pwszContainer || 0 == cchContainer) {
return E_INVALIDARG; }
Please add printing of debugstr_w(pwszContainer) back, after sanity checks. It's something really useful to know.
pwszContainer is an output parameter though. Do you mean to trace the container name after we successfully find the index in the function? If so, I can certainly do that.
On 03/14/2010 03:09 PM, Andrew Nguyen wrote:
On Sun, Mar 14, 2010 at 3:05 PM, Vitaliy Margolen wine-devel@kievinfo.com wrote:
On 03/14/2010 11:03 AM, Andrew Nguyen wrote:
- TRACE("(%p, %u, %s, %u)\n", iface, dwIndex, debugstr_w(pwszContainer), cchContainer);
Please add printing of debugstr_w(pwszContainer) back, after sanity checks. It's something really useful to know.
pwszContainer is an output parameter though. Do you mean to trace the container name after we successfully find the index in the function? If so, I can certainly do that.
Oh, right, printing it as a string in the first place was wrong since it's an output parameter. Somehow missed it.
Nah, no need to print the found container name. I was thinking about something else.
Vitaliy.