msxml3: Remove useless casts to self.
Signed-off-by: Michael Stefaniuc <mstefani@winehq.org> Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
0c738d900a
commit
979c9db3ec
|
@ -759,7 +759,7 @@ static HRESULT BindStatusCallback_create(httprequest* This, BindStatusCallback *
|
|||
case VT_ARRAY|VT_UI1:
|
||||
{
|
||||
sa = V_ARRAY(body);
|
||||
if ((hr = SafeArrayAccessData(sa, (void **)&ptr)) != S_OK)
|
||||
if ((hr = SafeArrayAccessData(sa, &ptr)) != S_OK)
|
||||
{
|
||||
heap_free(bsc);
|
||||
return hr;
|
||||
|
|
|
@ -1217,7 +1217,7 @@ static HRESULT node_transform_write(xsltStylesheetPtr style, xmlDocPtr result, B
|
|||
htmlSetMetaEncoding(result, (const xmlChar *)encoding);
|
||||
if (indent == -1)
|
||||
indent = 1;
|
||||
htmldoc_dumpcontent(output, result, (const char*)encoding, indent);
|
||||
htmldoc_dumpcontent(output, result, encoding, indent);
|
||||
}
|
||||
else if (method && xmlStrEqual(method, (const xmlChar *)"xhtml"))
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue