inetcomm: Fix printing NULL strings.

This commit is contained in:
Francois Gouget 2011-09-18 19:50:27 +02:00 committed by Alexandre Julliard
parent cb6a8125a9
commit 54ae7787de

View file

@ -2134,7 +2134,8 @@ static HRESULT WINAPI MimeMessage_IsContentType(
{
HRESULT hr;
IMimeBody *mime_body;
TRACE("(%p)->(%p, %s, %s)\n", iface, hBody, pszPriType, pszSubType);
TRACE("(%p)->(%p, %s, %s)\n", iface, hBody, debugstr_a(pszPriType),
debugstr_a(pszSubType));
hr = IMimeMessage_BindToObject(iface, hBody, &IID_IMimeBody, (void**)&mime_body);
if(FAILED(hr)) return hr;