Re: dbghelp: Fix stabs_pts_read_type_def() for when typename is NULL

2008-06-21 Thread Eric Pouech
Andrew Talbot a écrit : > Changelog: > dbghelp: Fix stabs_pts_read_type_def() for when typename is NULL. > > diff --git a/dlls/dbghelp/stabs.c b/dlls/dbghelp/stabs.c > index d550633..3c69eec 100644 > --- a/dlls/dbghelp/stabs.c > +++ b/dlls/dbghelp/stabs.c > @@ -896,10 +896,10 @@ static int stab

Valgrind regression in "rpcrt4: Use abrtitrary pointer identifiers when marshalling pointers instead of using pointer values."?

2008-06-21 Thread Dan Kegel
This Valgrind error popped up for the first time today. To reproduce, make sure you have an up to date valgrind from svn, apply something like http://kegel.com/wine/valgrind/runtest.patch, and do e.g. $ cd dlls/rpcrt4/tests $ RUNTEST_USE_VALGRIND=1 make server.ok Reverting http://source.winehq.or

wininet:http new test failures

2008-06-21 Thread James Hawkins
Hi all, I can't narrow down the commit that is causing the failures, but we're getting several new failures in the wininet:http tests that we weren't getting before. Looking through the recent changelog, Hans has added tests recently that might be the culprit. Can you take a look at the test res

user32:msg new failing tests

2008-06-21 Thread James Hawkins
Hi Dmitry, Tests added in the following commit fail for all platforms in which the tests are run: commit bbd8ae432256d32d99e75580b1896002045223b9 Author: Dmitry Timoshkov <[EMAIL PROTECTED]> Date: Wed Jun 18 12:34:01 2008 +0900 user32: Add a test for MNS_NOTIFYBYPOS, make it pass under Win

new failing tests

2008-06-21 Thread James Hawkins
Hi Alex, The following commit introduces several windows test failures across the board in riched20: commit 0e9ed5c10e3ac6b253712037f0b30046a5656239 Author: Alex Villacís Lasso <[EMAIL PROTECTED]> Date: Sun May 11 09:54:58 2008 -0500 richedit: Empty text should result in a scroll range of

Re: dxdiagn: PhysicalMemory parameter is a string not long long

2008-06-21 Thread Vitaliy Margolen
Rob Shearman wrote: > 2008/6/21 Vitaliy Margolen <[EMAIL PROTECTED]>: >> @@ -300,6 +300,7 @@ static HRESULT >> DXDiag_InitDXDiagSystemInfoContainer(IDxDiagContainer* pSubCont) >>GlobalMemoryStatusEx( &msex ); >>V_VT(&v) = VT_UI8; >>V_UI8(&v) = msex.ullTotalPhys; >> + VariantChangeType

Re: [3/3] gdi32: Return the correct value from GetTextFace.

2008-06-21 Thread Alexandre Julliard
Dan Hipschman <[EMAIL PROTECTED]> writes: > INT WINAPI GetTextFaceA( HDC hdc, INT count, LPSTR name ) > { > -INT res = GetTextFaceW(hdc, 0, NULL); > -LPWSTR nameW = HeapAlloc( GetProcessHeap(), 0, res * 2 ); > -GetTextFaceW( hdc, res, nameW ); > - > if (name) > { > -

Re: [d3d8] Fix CreateImageSurface implementation (with testcase)

2008-06-21 Thread H. Verbeet
2008/6/20 Tobias Jakobi <[EMAIL PROTECTED]>: > However I think the comment should stay there. I don't think the MSDN > docs are updated in the near future, at least what D3D9 is concerned > (now that D3D10 is more and more used). So in case someone is wondering > why the implementation of wine diff

Re: dxdiagn: PhysicalMemory parameter is a string not long long

2008-06-21 Thread Rob Shearman
2008/6/21 Vitaliy Margolen <[EMAIL PROTECTED]>: > @@ -300,6 +300,7 @@ static HRESULT > DXDiag_InitDXDiagSystemInfoContainer(IDxDiagContainer* pSubCont) >GlobalMemoryStatusEx( &msex ); >V_VT(&v) = VT_UI8; >V_UI8(&v) = msex.ullTotalPhys; > + VariantChangeType(&v, &v, 0, VT_BSTR); >I