Commit fc324d97 authored by Gerald Pfeifer's avatar Gerald Pfeifer Committed by Alexandre Julliard

twain_32: Avoid using an uninitialized variable in the failure path in path in a couple of cases.

parent d4db09d0
......@@ -71,6 +71,8 @@ static BOOL get_onevalue(TW_HANDLE hcontainer, TW_UINT32 *ret, TW_UINT16 *type)
GlobalUnlock(hcontainer);
return TRUE;
}
else
*ret = 0;
return FALSE;
}
......
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