Module: wine Branch: master Commit: e703763e51c9190c2fe7c324e0847238f41d9857 URL: http://source.winehq.org/git/wine.git/?a=commit;h=e703763e51c9190c2fe7c324e0...
Author: Jacek Caban jacek@codeweavers.com Date: Wed Feb 16 11:26:57 2011 +0100
msxml3: Silence QueryInterface FIXME.
---
dlls/msxml3/httprequest.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/dlls/msxml3/httprequest.c b/dlls/msxml3/httprequest.c index 4dd4de8..0be4fbb 100644 --- a/dlls/msxml3/httprequest.c +++ b/dlls/msxml3/httprequest.c @@ -505,7 +505,8 @@ static HRESULT WINAPI httprequest_QueryInterface(IXMLHTTPRequest *iface, REFIID } else { - FIXME("Unsupported interface %s\n", debugstr_guid(riid)); + TRACE("Unsupported interface %s\n", debugstr_guid(riid)); + *ppvObject = NULL; return E_NOINTERFACE; }