23 Sep
2019
23 Sep
'19
12:53 p.m.
Signed-off-by: Gabriel Ivăncescu <gabrielopcode(a)gmail.com> --- dlls/msscript.ocx/msscript.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dlls/msscript.ocx/msscript.c b/dlls/msscript.ocx/msscript.c index 6e4c8d1..8fdcf20 100644 --- a/dlls/msscript.ocx/msscript.c +++ b/dlls/msscript.ocx/msscript.c @@ -139,6 +139,8 @@ static HRESULT get_typeinfo(tid_t tid, ITypeInfo **typeinfo) { HRESULT hres; + if (tid >= ARRAY_SIZE(typeinfos)) + return DISP_E_BADINDEX; if (!typelib) hres = load_typelib(); if (!typelib) -- 2.21.0