Re: cmd: /r is equivalent to /c

2012-10-02 Thread Dmitry Timoshkov
Ken Sharp wrote: > - if (tolowerW(c)=='c') { > + if (tolowerW(c)=='c'||'r') { In C it doesn't work this way. -- Dmitry.

Re: AppDB: Could someone please block this Spammer (UCE)

2012-10-02 Thread Rosanne DiMesio
On Tue, 2 Oct 2012 23:48:22 +0200 "newsletter [at] Schiermeier-Software" wrote: > > Please Rosane, help us...! > > Thanks a lot! > I'd love to, but if the AppDB has a way to ban users, I don't have access to it. I've already deleted the comments from the Office 2007 page (twice), and it lo

Re: ImmIsUIMessageA/W

2012-10-02 Thread André Hentschel
Am 02.10.2012 21:23, schrieb Aric Stewart: > I have a proposed patch that I have tested with World of Tanks and it does > not cause http://bugs.winehq.org/show_bug.cgi?id=27554 to reappear for me on > either mac or Linux. > > Would you be able to test it and confirm that I am not reintroduction

AppDB: Could someone please block this Spammer (UCE)

2012-10-02 Thread newsletter [at] Schiermeier-Software
Hello everybody, could someone of the AppDB admin team please block this UCE-Mails which comes via AppDB-notifications? I'm speaking about this: 1.) Tue, 02 Oct 2012 04:58:05 -0500 2.) Tue, 02 Oct 2012 12:01:08 -050

Re: ImmIsUIMessageA/W

2012-10-02 Thread Aric Stewart
I have a proposed patch that I have tested with World of Tanks and it does not cause http://bugs.winehq.org/show_bug.cgi?id=27554 to reappear for me on either mac or Linux. Would you be able to test it and confirm that I am not reintroduction the issues? thanks! -aric On 9/25/12 2:54 PM, Henr

Re: shell32/tests: Write proper tests for CommandLineToArgvW().

2012-10-02 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=21949 Your paranoid android

Re: shell32/tests: Write proper tests for CommandLineToArgvW().

2012-10-02 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=21950 Your paranoid android

Re: [PATCH 7/7] mshtml: Added script 'for' and 'event' attributes tests

2012-10-02 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=21945 Your paranoid android

Re: [PATCH] rpcrt4: wait_async_request: return error if we received an error

2012-10-02 Thread Jacek Caban
Hi Marcus, On 10/01/12 23:00, Marcus Meissner wrote: > Hi, > > Various coverity issues complain about user-after-free scenarios, > all involving this code path. > > I strongly think if call_ret signals error, we also need to return > an error condition to avoid the callers from proceeding as if no

Re: wininet/tests(1/2): Test CommitUrlCacheEntry with the original URL parameter

2012-10-02 Thread Piotr Caban
On 10/02/12 03:30, Juan Lang wrote: +/* On the other hande, GetUrlCacheEntryInfoEx allows you to query the + * original URL. + */ There's a typo, should be "On the other hand". +/* Strangely, you can create a cache entry redirected to itself. */ +ret = CreateUrlCacheEntry(test

Re: [PATCH 2/3] vbscript: Added LTrim() implementation

2012-10-02 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=21943 Your paranoid android

Re: [PATCH 1/3] vbscript: Added Trim() implementation

2012-10-02 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=21942 Your paranoid android

Re: wininet(2/2): Fail to commit a url cache entry when the original URL is specified and no local filename is given

2012-10-02 Thread Piotr Caban
On 10/02/12 03:31, Juan Lang wrote: @@ -3084,6 +3084,11 @@ static BOOL CommitUrlCacheEntryInternal( SetLastError(ERROR_INVALID_PARAMETER); return FALSE; } +if (lpszOriginalUrl && !lpszLocalFileName) +{ +SetLastError(ERROR_INVALID_PARAMETER); +return F