Re: Winebuild b0rken on Mac OS X?

2010-05-04 Thread eric lanz
FYI wine can be built again with the iphone sdk beta 3 that came out today. From: Charles Davis To: wine-devel Sent: Tue, April 20, 2010 3:21:56 PM Subject: Winebuild b0rken on Mac OS X? While building Wine (latest git) on Mac OS X, I noticed this: /usr/bin/

Re: Winebuild b0rken on Mac OS X?

2010-04-20 Thread eric lanz
I've seen this error using the os 4.0 beta 1 sdk, using the GM 3.2 sdk I don't get this error -- so the last couple weeks I've been switching sdk's back and forth to get around the problem.  I'm downloading os 4.0 beta 2 right now to see if apple fixed it. --- On Tue, 4/20/10, Charles Davis w

Re: dlls/msxml3: Using strlenW instead of SysStringLen to check node name length

2010-03-23 Thread Eric Lanz
Sure thing, The line we call is: m_pMD5XMLDoc->createNode(varType, L"md5report", L"", &pMD5RootNode); So I think we are sending the createNode function WCHAR strings like Nikolay is saying. For that call the SysStringLen function is giving a length of 0 for L"md5report". I think that Nikol

Re: [PATCH] dlls/msxml3: Using strlenW instead of SysStringLen to check node name length

2010-03-22 Thread Eric Lanz
Thank you, I will take a look at your changes, correct my work and re-submit. Eric On Mar 22, 2010, at 4:44 PM, Nikolay Sivov wrote: > On 3/22/2010 23:26, Eric Lanz wrote: >> Hello, >> >> Decided to keep it simple for my first patch. SysStringLen was returning 0

[PATCH] dlls/msxml3: Using strlenW instead of SysStringLen to check node name length

2010-03-22 Thread Eric Lanz
this purpose which seems to always return the correct length. Eric From 6faacde29ca87b7b93897fd4eb2948d402f610fe Mon Sep 17 00:00:00 2001 From: Eric Lanz Date: Mon, 22 Mar 2010 16:06:13 -0400 Subject: Using strlenW instead of SysStringLen to check node name length --- dlls/msxml3/domdoc.c