Commit 54ae7787 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

inetcomm: Fix printing NULL strings.

parent cb6a8125
......@@ -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;
......
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