Re: A new demangler test?

2013-02-22 Thread Eric Pouech
Le 21/02/2013 14:33, Max TenEyck Woodbury a écrit : Would it be appropriate to add a test to the name demangler that: 1) Scans all '.dll' and '.spac' files for mangled names, and 2) Tries to decode those names. 3) Prints the mangled and decoded names and where they occur. Success would be tha

Re: gdiplus: Remove debug traces from GdipBitmapGetPixel and GdipBitmapSetPixel.

2013-02-22 Thread Vincent Povirk
> alpha_blend_bmp_pixels() calls them while copying bitmap bits with an > alpha channel. This makes debug logs huge, hard to analyze, and completely > unmanagable in size. GDI+ should be fixed so it doesn't call these functions internally. It's just not an efficient way to render to bitmaps.

Re: gdi32: Fix the GdiGetCodePage() support ANSI_CHARSET font associated charset.

2013-02-22 Thread Akihiro Sagawa
On Fri, 22 Feb 2013 11:21:20 +0900, Byeongsik Jeon wrote: > This patch fix a original topic of the wine-bugs #16325. Thanks for your work on this. > +static DWORD get_associated_charset_info(void) > +{ > +static DWORD associated_charset = -1; > + > +if (associated_charset == -1) > +{

newtestbot timings

2013-02-22 Thread Joerg-Cyril.Hoehle
Hi, I've looked at some of newtestbot timing results. http://newtestbot.winehq.org/JobDetails.pl?Key=256 It's not too bad, but it's not superb either. >render.c:633: event after Stop.4 average 40.000ms deviation 0.06 from 100 >samples That's exactly the expected 40ms, great! >render.c:618: Test

Re: [0/13] Patch series description

2013-02-22 Thread Saulius Krasuckas
* On Thu, 21 Feb 2013, André Hentschel wrote: > Am 21.02.2013 21:31, schrieb Saulius Krasuckas: > > > > because I've got new(er) Sparc machine. > > You know that you most likely won't ever be able to run x86 apps on that > machine, only winelib. Do you need that for something? Yes, I am aware o

Re: vbscript: Added support for a few more constants.

2013-02-22 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=24500 Your paranoid android

winealsa: Have the MIDI recorder wait in poll(), not snd_seq_event_input().

2013-02-22 Thread Joerg-Cyril.Hoehle
Hi, Johannes Kroll wrote: >I don't understand what you mean by "decompose LongMsg into snippets". >Is it possible that either >A) the app expects the API code to scan the buffer for a trailing 0xf7 >end marker and send only the bytes up to that marker; or >B) that the mysterious "dwBytesRecorded"

Re: comctl32/treeview: Protect TVM_GETITEM from invalid item pointers

2013-02-22 Thread Nikolay Sivov
On 2/22/2013 14:09, Alexandre Julliard wrote: Nikolay Sivov writes: @@ -2101,9 +2102,17 @@ TREEVIEW_GetItemT(const TREEVIEW_INFO *infoPtr, LPTVITEMEXW tvItem, BOOL isW) { if (!item) return FALSE; -TRACE("got item from different tree %p, called from %p\n", item->info

Re: server/advapi32: Report administrator ownership by default for registry objects (try 4).

2013-02-22 Thread Alexandre Julliard
"Erich E. Hoover" writes: > +else > +{ > +struct object_type *type = obj->ops->get_type( obj ); > +static const WCHAR key_type[] = {'K','e','y'}; > +const WCHAR *type_name = NULL; > +data_size_t type_len = 0; > + > +if (!type) goto done; > +

Re: comctl32/treeview: Protect TVM_GETITEM from invalid item pointers

2013-02-22 Thread Alexandre Julliard
Nikolay Sivov writes: > @@ -2101,9 +2102,17 @@ TREEVIEW_GetItemT(const TREEVIEW_INFO *infoPtr, > LPTVITEMEXW tvItem, BOOL isW) > { > if (!item) return FALSE; > > -TRACE("got item from different tree %p, called from %p\n", > item->infoPtr, infoPtr); > -infoPtr = i