Re: [PATCH v3 0/7] Add O_DENY* support for VFS and CIFS/NFS

2013-03-05 Thread Simo
On 03/05/2013 01:13 PM, J. Bruce Fields wrote: On Mon, Mar 04, 2013 at 05:49:46PM -0500, Simo wrote: On 03/04/2013 04:19 PM, J. Bruce Fields wrote: On Thu, Feb 28, 2013 at 01:53:25PM -0800, Andy Lutomirski wrote: [possible resend -- sorry] On 02/28/2013 07:25 AM, Pavel Shilovsky wrote: This

Re: [PATCH v3 0/7] Add O_DENY* support for VFS and CIFS/NFS

2013-03-05 Thread J. Bruce Fields
On Mon, Mar 04, 2013 at 05:49:46PM -0500, Simo wrote: > On 03/04/2013 04:19 PM, J. Bruce Fields wrote: > >On Thu, Feb 28, 2013 at 01:53:25PM -0800, Andy Lutomirski wrote: > >>[possible resend -- sorry] > >> > >>On 02/28/2013 07:25 AM, Pavel Shilovsky wrote: > >>>This patchset adds support of O_DENY

Re: [3/3] Make mac driver the default on OS X

2013-03-05 Thread Ken Thomases
On Mar 5, 2013, at 6:32 PM, Josh DuBois wrote: > diff --git a/dlls/winemac.drv/macdrv_main.c b/dlls/winemac.drv/macdrv_main.c > index cd1cc0c..1f16694 100644 > --- a/dlls/winemac.drv/macdrv_main.c > +++ b/dlls/winemac.drv/macdrv_main.c > @@ -85,7 +85,7 @@ static BOOL process_attach(void) > ma

Re: [1/3] Make mac driver the default on OS X

2013-03-05 Thread Ken Thomases
On Mar 5, 2013, at 6:32 PM, Josh DuBois wrote: > --- > dlls/gdi32/driver.c | 102 +++-- > dlls/gdi32/gdi32.spec |1 + > dlls/gdi32/gdi_private.h |2 + > dlls/user32/driver.c | 27 ++-- > include/wine/gdi_driver.h | 11 + >

Re: msxml3: Implement IXMLParser Get/Set Factory

2013-03-05 Thread Nikolay Sivov
On 3/6/2013 09:11, Alistair Leslie-Hughes wrote: Hi, Changelog: msxml3: Implement IXMLParser Get/Set Factory You also need to release factory reference on parser release it seems. Best Regards Alistair Leslie-Hughes

spec file and -arch

2013-03-05 Thread Stefan Leichter
Hi, when i look into msvcr100.spec file i find lots of different parameters for the switch (?) -arch . So fare i have seen: arm, i386, win32, win64 and x86_64 . To me it is not clear what is the difference between win64 and x86_64. The same for i386 and win32. What are is the criteria to choose

Re: comctl32/imagelist: use proper color format for merged image lists (try 2)

2013-03-05 Thread Daniel Jelinski
Hello, No surprises in mask behavior - the result is always masked. On the other hand, merging ILC_COLOR16 with ILC_COLORDDB (which is 32bit) results in 16bit image: https://testbot.winehq.org/JobDetails.pl?Key=24624 All other merges (including reverse of the above = ILC_COLORDDB with ILC_COLOR16)

mmdevapi: Prevent 64 bit overflow within a few days of audio device use. (try 2)

2013-03-05 Thread Joerg-Cyril.Hoehle
Hi, Michael Stefaniuc wrote: >But I see that even the whole functionality can move to a helper. That's not a good idea: While the code currently contains two identical pieces of code, it is actually bogus because the capture part should *not* store current time rather than get *recorded* time. Th

[PATCH 2/2] winmm: MCI_BREAK_HWND handling now matches Wine's 1999 MCI_DefYieldProc.

2013-03-05 Thread Joerg-Cyril.Hoehle
Hi, >It doesn't make sense to add workarounds for Wine code, it should be >fixed instead. That's why I had separated this debatable part into patch 2/2. But what about patch 1/2 not yet committed? That one contains all stuff that's not debatable and is backed up by tests from w2k-w7. 1/2 is stand

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

2013-03-05 Thread Alexandre Julliard
"Erich E. Hoover" writes: > +static struct security_descriptor *key_get_sd( struct object *obj ) > +{ > +struct security_descriptor *sd = default_get_sd( obj ); > +const SID *admins_sid = security_builtin_admins_sid; > +int admin_len; > +char *ptr; > + > +if (sd) return sd; >

Re: comctl32/imagelist: use proper color format for merged image lists (try 2)

2013-03-05 Thread Alexandre Julliard
Daniel Jelinski writes: > +static void test_merge_colors(void) > +{ > +HIMAGELIST himl[5], hmerge; > +int sizes[] = { ILC_COLOR4, ILC_COLOR8, ILC_COLOR16, ILC_COLOR24, > ILC_COLOR32 }; You should also test COLORDDB, and probably the mask behavior too. -- Alexandre Julliard julli...@wi

Re: Making wine default to the Mac Driver on OS X

2013-03-05 Thread Per Johansson
On Mon, Mar 4, 2013 at 8:36 PM, Alexandre Julliard wrote: > Ken Thomases writes: > >> If the concern is what you get when you're ssh'd into a remote system, >> then it's probably possible for the Mac driver to detect when it >> doesn't have GUI console access and fail. Then, Wine could fall back