Wine bot results

Jacek Caban jacek at codeweavers.com
Tue Aug 28 10:16:37 CDT 2012


On 08/28/12 12:04, Alistair Leslie-Hughes wrote:
> Hi,
>
> I have a patch that when run on on the testbot, it fails on all but
> two machines.
> However when I build the exe myself and run it, it pass on all but two
> machines.
>
> http://testbot.winehq.org/JobDetails.pl?Key=21257
> http://testbot.winehq.org/JobDetails.pl?Key=21256
>
> Ubuntu 12.04.
>
> Any Ideas on the different results?


+       VariantClear(&d);
+       V_VT(&v) = VT_BSTR;
+       V_BSTR(&v) = SysAllocStringLen(NULL, 0);

This VariantClear call attempts to free uninitialized VARIANT instance.
You probably meant VariantInit().

Jacek



More information about the wine-devel mailing list