Commit 69a61383 authored by Gerald Pfeifer's avatar Gerald Pfeifer Committed by Alexandre Julliard

vbscript: Avoid use of uninitialized variable in Global_InStrRev().

parent f0e2ea98
......@@ -1810,6 +1810,8 @@ static HRESULT Global_InStrRev(vbdisp_t *This, VARIANT *args, unsigned args_cnt,
}else {
start = SysStringLen(str1);
}
} else {
str2 = NULL;
}
if(SUCCEEDED(hres)) {
......
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