mshtml: Add failure detection to set_downloading_proc.

This commit is contained in:
Gerald Pfeifer 2011-09-08 01:08:56 +02:00 committed by Alexandre Julliard
parent 366f54110a
commit 3eafe92ba3
1 changed files with 1 additions and 1 deletions

View File

@ -179,7 +179,7 @@ static void set_downloading_proc(task_t *_task)
IDropTarget *drop_target = NULL;
hres = IDocHostUIHandler_GetDropTarget(doc->hostui, NULL /* FIXME */, &drop_target);
if(drop_target) {
if(SUCCEEDED(hres)) {
FIXME("Use IDropTarget\n");
IDropTarget_Release(drop_target);
}