Skip to content
Snippets Groups Projects
Commit 158c8b76 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard
Browse files

jscript: Remove break after return (Smatch).

parent 15162ddf
No related branches found
No related tags found
No related merge requests found
......@@ -571,10 +571,8 @@ HRESULT to_string(script_ctx_t *ctx, VARIANT *v, jsexcept_t *ei, BSTR *str)
case VT_I4:
*str = int_to_bstr(V_I4(v));
break;
case VT_R8: {
case VT_R8:
return double_to_bstr(V_R8(v), str);
break;
}
case VT_BSTR:
*str = SysAllocString(V_BSTR(v));
break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment