Re: [AppDb] stuff thats broken

2006-06-23 Thread Chris Morgan
> > 5.) If you add a hyperlink in a note it is broken with makesafe() > > turned on. > > I'm not sure this has anything to do with makeSafe(). Right now makeSafe() > is effectively disabled and I've carefully reviewed the changes to > addAppNode.php but I can't see how any of the changes broke no

Re: [AppDb] stuff thats broken

2006-06-23 Thread Chris Morgan
On Friday 23 June 2006 9:12 pm, Tony Lambregts wrote: > So I was testing Chris's "query_parameters" patch and I found the > following things broken with current CVS. This note is mostly to archive > the issues I found than anything else. Most of these are minor problems > but they should be fixed.

Re: Very large files

2006-06-23 Thread Vijay Kiran Kamuju
Hi, I think its dependent on the filesystem and the kernel version you are running. What is the Redhat linux version you are using snd the kernel version you are using. Thanks, Vijay On 6/23/06, John Willis <[EMAIL PROTECTED]> wrote: Howdy, I have a large VS 6.0 C++ program and I'm running i

Re: Autocad 2004 STATUS_INVALID_LDT_OFFSET

2006-06-23 Thread Vitaliy Margolen
Friday, June 23, 2006, 9:47:01 AM, Jaap Stolk wrote: > ExAllocatePoolWithTag( ) function in the file ntoskrnl_api.c : > I changed: > WINE_TRACE("(%d %ld %.4s), semi-stub\n", PoolType, NumberOfBytes, > (char*)&Tag); > to: > WINE_TRACE("(%d %ld %4s), semi-stub\n", PoolType, NumberOfBytes, (char*)&T

Re: [AppDB] - protect sql insert statements from injection attacks

2006-06-23 Thread Tony Lambregts
Chris Morgan wrote: Here is the new version. I've switched to the fully expanded method of writing out the sql. This is the same format used by several db wrapper libraries, in prepared sql statements and is the recommended style under c#/.net for queries. I've tested creating new users and

Re: Wine developers?

2006-06-23 Thread Vitaliy Margolen
Friday, June 23, 2006, 9:51:28 AM, Kuba Ober wrote: > On Wednesday 21 June 2006 21:24, Vitaliy Margolen wrote: >> Wednesday, June 21, 2006, 11:41:32 AM, Andreas Mohr wrote: >> > Hi, >> > >> > On Wed, Jun 21, 2006 at 07:27:28PM +0200, Kai Blin wrote: >> >> I wouldn't necessarily judge the whole list

[AppDb] stuff thats broken

2006-06-23 Thread Tony Lambregts
So I was testing Chris's "query_parameters" patch and I found the following things broken with current CVS. This note is mostly to archive the issues I found than anything else. Most of these are minor problems but they should be fixed. If you want to have a go at fixing any of the issues feel

Variable sized server replies

2006-06-23 Thread Thomas Kho
In protocol.def, the get_startup_info request declares two VARARGS as replies. Unless I've mistaken, replies are limited to one VARARG that the server call writes into preallocated data, right? That leads me to my next question: I'm currently working on moving menus into the server (see

Very large files

2006-06-23 Thread John Willis
Howdy,   I have a large VS 6.0 C++ program and I'm running it under WINE under Redhat Linux. Everything works fine, but it doesn't handle file sizes greater than 4gb like it can running directly under Windows XP. I've tweaked everything that I can find that seems to deal with file sizes. Is

Re: LoadResource with module=0x00400000 followed by stack overflow

2006-06-23 Thread Jonathan Clark
  On Tue, 20 Jun 2006 12:49:25 +0200, Jan-Espen Pettersen wrote: > Can a win32 program expect that it has write access to the memory > pointed to by the return value of LoadResource with module 0x0040? > Should LoadResource in some cases copy the memory and return a > writeable c

How do I get the unix filename for a wine handle?

2006-06-23 Thread Christoph Probst
Hi, I'm one of the Google Summer of Code students and I'm working on the ClamAV integration in wine. Today I was discussing an issue with my mentor and he suggested to post it here. Currently I'm working on a scan-after-write functionality: Whenever a file was changed the virusscanner checks

Re: [AppDB] - protect sql insert statements from injection attacks

2006-06-23 Thread Chris Morgan
Here is the new version. I've switched to the fully expanded method of writing out the sql. This is the same format used by several db wrapper libraries, in prepared sql statements and is the recommended style under c#/.net for queries. I've tested creating new users and distributions and sub

Re: [SETUPAPI] SetupDiCreateDeviceInfoA stub

2006-06-23 Thread Christian Gmeiner
On Thursday 22 June 2006 17:50, Detlef Riekenberg wrote: > Hi Christian Gmeiner: > > It seems that there > > is no SetupDiCreateDeviceInfoW exporteded by setupapi.dll on windows > > SetupDiCreateDeviceInfoW is exported: > http://support.microsoft.com/dllhelp/?dlltype=file&l=55&S=1&alpha=setupapi. >

Re: riched20: EM_GETLINE implementation and test

2006-06-23 Thread Kari Hurtta
"James Hawkins" <[EMAIL PROTECTED]> writes in gmane.comp.emulators.wine.devel: > On 6/22/06, Andrew Talbot <[EMAIL PROTECTED]> wrote: > > James Hawkins wrote: > > > Probably, L"" is not portable, and you have to use: > > > > > > static const WHCAR string[] = {'s','t','r','i','n','g',0}; > > > > >

Re: Wine developers?

2006-06-23 Thread Kuba Ober
On Wednesday 21 June 2006 21:24, Vitaliy Margolen wrote: > Wednesday, June 21, 2006, 11:41:32 AM, Andreas Mohr wrote: > > Hi, > > > > On Wed, Jun 21, 2006 at 07:27:28PM +0200, Kai Blin wrote: > >> I wouldn't necessarily judge the whole list by just two negative > >> reactions. It's interesting to s

Re: Autocad 2004 STATUS_INVALID_LDT_OFFSET

2006-06-23 Thread Jaap Stolk
ExAllocatePoolWithTag( ) function in the file ntoskrnl_api.c : I changed: WINE_TRACE("(%d %ld %.4s), semi-stub\n", PoolType, NumberOfBytes, (char*)&Tag); to: WINE_TRACE("(%d %ld %4s), semi-stub\n", PoolType, NumberOfBytes, (char*)&Tag); Don't know how decimals are supposed to work with a string,

Re: Autocad 2004 STATUS_INVALID_LDT_OFFSET

2006-06-23 Thread Jaap Stolk
I think i found the cause further up in the log. 178591:000f:Starting process L"c:\\windows\\system32\\ntoskrnl.exe" ... 178596:wine_dbg_vprintf: debugstr buffer overflow (contents: '000f:trace:ntoskrnl:ExAllocatePoolWithTag (0 20 ') 178597:000f:trace:seh:raise_exception code=8101 flags=1 add

Re: Autocad 2004 STATUS_INVALID_LDT_OFFSET

2006-06-23 Thread Jaap Stolk
On 6/23/06, Mike Hearn <[EMAIL PROTECTED]> wrote: On Fri, 23 Jun 2006 14:13:18 +0200, Jaap Stolk wrote: > 200145:Backtrace: Hmm seems like you are seeing a mixed debugger/app trace there ... gotta be careful of that! Ah, yes that's it. it seems one of the threads is bailing out somewhere. furt

Re: Autocad 2004 STATUS_INVALID_LDT_OFFSET

2006-06-23 Thread Mike Hearn
On Fri, 23 Jun 2006 14:13:18 +0200, Jaap Stolk wrote: > 200145:Backtrace: Hmm seems like you are seeing a mixed debugger/app trace there ... gotta be careful of that!

Re: Move all common Dll[un]RegisterServer stuff to advapi

2006-06-23 Thread Mike Hearn
On Thu, 22 Jun 2006 15:58:58 -0700, James Hawkins wrote: > The imports for current dlls concerning advapi32 are fine; no need to > change to delay import. I understand where you're going with moving > factoring out registration, it's just that advapi32 is not the place. > I'm not sure where else y

Re: Wine developers?

2006-06-23 Thread Mike Hearn
Hiya Jonathon, I wouldn't worry too much about the negative reactions there, which is a shame. As Molle has pointed out he is not really a Wine developer. I am and I'd say that it's totally fine to post such a job advert here, I'm sure there are people here who would like to find a good job with t

Re: Wine developers?

2006-06-23 Thread Mike Hearn
On Tue, 20 Jun 2006 19:32:11 -0600, Vitaliy Margolen wrote: > Basically you are _stealing_ developers from the project. Because with your > closed source project such developer will be prohibited from participating in > the Wine project. A very specific legal interpretation that would require the

Re: LoadResource with module=0x00400000 followed by stack overflow

2006-06-23 Thread Mike Hearn
On Tue, 20 Jun 2006 12:49:25 +0200, Jan-Espen Pettersen wrote: > Can a win32 program expect that it has write access to the memory > pointed to by the return value of LoadResource with module 0x0040? > Should LoadResource in some cases copy the memory and return a writeable > copy of the resour

Autocad 2004 STATUS_INVALID_LDT_OFFSET

2006-06-23 Thread Jaap Stolk
I'm trying to run Autocad 2004. (installation from cd "works") current status: (/blog) http://wiki.jswindle.com/index.php/AutoCad#Forum_Comments It starts a long way, and wine seems to handle the usual CreateFileA(".\\NTICE") and IsDebuggerPresent() properly, and it generates and runs some d

Re: ddraw assert prevents Ankh from starting

2006-06-23 Thread Christoph Frick
On Fri, Jun 23, 2006 at 11:49:24AM +0200, Stefan Dösinger wrote: Hi Stefan, > I tested the demo, the loading screen appears without the assert. I will send > a more proper implementation of IDirectDrawSurface::SetSurfaceDesc when I > have time(university tests :-( ). no hurry! i try out all th

Re: ddraw assert prevents Ankh from starting

2006-06-23 Thread Stefan Dösinger
Am Dienstag 20 Juni 2006 09:17 schrieb Christoph Frick: > hiho > > on the end of this mail is a patch, that removes an assert(0) from the > surface code in ddraw. but removing it let Ankh[1][2] start (it started > before, but there where no loading screen visible). yet there are other > problems wi

Re: ddraw assert prevents Ankh from starting

2006-06-23 Thread Stefan Dösinger
Am Dienstag 20 Juni 2006 09:17 schrieb Christoph Frick: > hiho > > on the end of this mail is a patch, that removes an assert(0) from the > surface code in ddraw. but removing it let Ankh[1][2] start (it started > before, but there where no loading screen visible). yet there are other > problems wi