http://bugs.winehq.org/show_bug.cgi?id=30563
Anastasius Focht focht@gmx.net changed:
What |Removed |Added ---------------------------------------------------------------------------- Component|-unknown |jscript
--- Comment #7 from Anastasius Focht focht@gmx.net 2012-05-02 09:21:10 CDT --- Hello,
good news I found the problem ;-) The issue is pretty much the same as bug 30465 but it's Wine's own jscript engine that needs to be fixed.
Consider the following snippet:
http://source.winehq.org/git/wine.git/blob/c9c8c6165eafc91e0c1c11fe5563db613...
--- snip --- 414 static inline void num_set_val(VARIANT *v, DOUBLE d) 415 { 416 if(d == (DOUBLE)(INT)d) { 417 V_VT(v) = VT_I4; 418 V_I4(v) = d; 419 }else { 420 V_VT(v) = VT_R8; 421 V_R8(v) = d; 422 } 423 } --- snip ---
The application is fully usable with both parts fixed.
GUI and downloads are stable.
Regards