Re: mlang/tests: Simplify the "pointer to start of array" idiom.

2012-07-27 Thread Marvin
Hi, While running your changed tests on Windows, I think I found new failures. Being a bot and all I'm not very good at pattern recognition, so I might be wrong, but could you please double-check? Full results can be found at http://testbot.winehq.org/JobDetails.pl?Key=20356 Your paranoid android

Re: user32: Rearrange ComboBox repositioning code (Resolves one "todo") (Resend).

2012-07-27 Thread Marvin
Hi, While running your changed tests on Windows, I think I found new failures. Being a bot and all I'm not very good at pattern recognition, so I might be wrong, but could you please double-check? Full results can be found at http://testbot.winehq.org/JobDetails.pl?Key=20347 Your paranoid android

What happened to testbot?

2012-07-27 Thread Daniel Jelinski
It seems that WINEBUILD has taken a break two days ago, no tasks involving building have been completed since then. Regards, Daniel

Re: Investigating iexplore/activex issues

2012-07-27 Thread Qian Hong
Hi Joel, On Fri, Jul 27, 2012 at 11:12 PM, Joel Holdsworth wrote: > Hi Qian, > > > > That's the easiest solution I've heard so far. Unfortunately I ran straight > into bug #25919 (http://bugs.winehq.org/show_bug.cgi?id=25918). Maybe I can > find a work-about, unless you know the solution already?

Re: [1/2] gdiplus: Don't keep a reference to HDC in the GpBitmap object.

2012-07-27 Thread Dmitry Timoshkov
Vincent Povirk wrote: > You're adding a test that relies on a corner case that should be > regarded as a broken program, and that could easily result in a > use-after-free on native. I'm not convinced this is reliable, as the > native codepath could involve a use-after-free and still work by > co

Re: Investigating iexplore/activex issues

2012-07-27 Thread Joel Holdsworth
Hi Jacek, thanks for that information. That really helpful. I might be able to find my way through to the solution. Joel On 27 July 2012 at 13:58 Jacek Caban wrote: > Hi Joel, > > On 07/26/12 20:32, Joel Holdsworth wrote: > > Hi All, > > > > I've recently begun working at VCA technology on an

Re: Investigating iexplore/activex issues

2012-07-27 Thread Joel Holdsworth
Hi Qian, That's the easiest solution I've heard so far. Unfortunately I ran straight into bug #25919 (http://bugs.winehq.org/show_bug.cgi?id=25918). Maybe I can find a work-about, unless you know the solution already? Joel On 27 July 2012 at 09:54 Qian Hong wrote: > On Fri, Jul 27, 2012 at

Re: [1/2] gdiplus: Don't keep a reference to HDC in the GpBitmap object.

2012-07-27 Thread Vincent Povirk
>> > an image passed to GdipGetImageGraphicsContext() is destroyed right after >> > the graphics object was created, then later on all calls using that HDC >> > fail >> > and silently lead to using invalid or not initilazed values. >> >> You have to keep the image alive as long as you're using the

Re: [1/2] gdiplus: Don't keep a reference to HDC in the GpBitmap object.

2012-07-27 Thread Dmitry Timoshkov
Vincent Povirk wrote: > > an image passed to GdipGetImageGraphicsContext() is destroyed right after > > the graphics object was created, then later on all calls using that HDC fail > > and silently lead to using invalid or not initilazed values. > > You have to keep the image alive as long as yo

Re: [1/2] gdiplus: Don't keep a reference to HDC in the GpBitmap object.

2012-07-27 Thread Vincent Povirk
> an image passed to GdipGetImageGraphicsContext() is destroyed right after > the graphics object was created, then later on all calls using that HDC fail > and silently lead to using invalid or not initilazed values. You have to keep the image alive as long as you're using the Graphics object. If

Re: Investigating iexplore/activex issues

2012-07-27 Thread Jacek Caban
Hi Joel, On 07/26/12 20:32, Joel Holdsworth wrote: > Hi All, > > I've recently begun working at VCA technology on an IP security camera > system. I'm mostly doing embedded linux stuff, but bhe code I'm > working with uses an ActiveX control to show the video and the > overlaid annotations. > > I'v

Re: Investigating iexplore/activex issues

2012-07-27 Thread Andrew Eikum
On Thu, Jul 26, 2012 at 07:32:10PM +0100, Joel Holdsworth wrote: > Does anyone have any suggestions for how I can better investigate > these issues? And what is the status of ActiveX in wine - is it > likely to work at all? > I've done only a little work with ActiveX in Wine, but I think it "work

Incompatibilities between different versions of msvcp dlls

2012-07-27 Thread Piotr Caban
Hi, There are many small differences between functions exported by different versions of msvcp. Currently only msvcp60 contains a partial copy of msvcp90 dll but it needs to be done for other dlls as well. There are classes that are very similar but have different virtual functions table dep

Re: winhttp: Always use the 64-bit version of IActiveScriptParse.

2012-07-27 Thread Jacek Caban
Hi Hans, This won't work on 32-bit. 32-bit JScript exposes only IActiveScriptParse32. That's an example where using inline macros complicates the code. See dlls/mshtml/script.c for how I dealt with this problem. Jacek

Re: GSoC mentor summit 2012

2012-07-27 Thread Owen Rudge
On 27/07/2012 12:20, Stefan Dösinger wrote: > That said, I've been there before, so if two other mentors who haven't been to > the summit yet want to go I am happy to yield the spot. Likewise, I'd put my name forward to attend again this year, but as with Stefan, if there are others who haven

Re: GSoC mentor summit 2012

2012-07-27 Thread Stefan Dösinger
Am Donnerstag, 26. Juli 2012, 16:07:52 schrieb Owen Rudge: > It looks like the GSoC mentor summit for 2012 has been announced. Are > any of the mentors this year interested in attending? It's happening on > the 20th/21st October in Mountain View. Sure, why not :-) That said, I've been there before

Re: [PATCH 1/4] mshtml: Moved IStream::Read calls to separated function

2012-07-27 Thread Jacek Caban
On 07/27/12 11:05, Dmitry Timoshkov wrote: > Jacek Caban wrote: > >> +static HRESULT read_stream(BSCallback *This, IStream *stream, void *buf, >> DWORD size, DWORD *ret_size) >> +{ >> +DWORD read_size = 0; >> +HRESULT hres; >> + >> +hres = IStream_Read(stream, buf, size, &read_size);

Re: [PATCH 1/4] mshtml: Moved IStream::Read calls to separated function

2012-07-27 Thread Dmitry Timoshkov
Jacek Caban wrote: > +static HRESULT read_stream(BSCallback *This, IStream *stream, void *buf, > DWORD size, DWORD *ret_size) > +{ > +DWORD read_size = 0; > +HRESULT hres; > + > +hres = IStream_Read(stream, buf, size, &read_size); > +This->readed += (*ret_size = read_size); > +

re: Investigating iexplore/activex issues

2012-07-27 Thread Joel Holdsworth
On 26 July 2012 at 23:40 Dan Kegel wrote: > I'm running into a similar problem, > http://bugs.winehq.org/show_bug.cgi?id=23058 > If you're using a different activex control, > please file a new bug, with a way > for others to reproduce the problem. Yes that does sound quite similar. I predict o