Bugzilla admin: please remove bug/illegal attachment from the bug 5928

2008-01-11 Thread Vitaliy Margolen
Also please remove poster from the users list of the bugzilla. Posting illegal content is against usage policies. Thanks. Vitaliy.

urlmon tests now require gecko?

2008-01-11 Thread Dan Kegel
Running the tests now hangs for me waiting for me to click "OK" to the gecko download dialog. Is that something we want to fix, or should I just do 'winetricks gecko' before starting the tests?

Re: autorun perhaps dangerous (Was: Wine release 0.9.53)

2008-01-11 Thread Vincent Povirk
I've found Mike Lin's Startup Control Panel (http://mlin.net/StartupCPL.shtml) very useful for this on windows. It appears to work on Wine, though I don't seem to have any Run or RunOnce entries so can't be sure. On Jan 11, 2008 11:48 AM, Marcus Meissner <[EMAIL PROTECTED]> wrote: > On Fri, Jan 11

Re: autorun perhaps dangerous (Was: Wine release 0.9.53)

2008-01-11 Thread Christian Gmeiner
2008/1/11, Marcus Meissner <[EMAIL PROTECTED]>: > > On Fri, Jan 11, 2008 at 05:36:04PM +0100, Alexandre Julliard wrote: > > This is release 0.9.53 of Wine, a free implementation of Windows on > Unix. > > > > What's new in this release: > > - RunOnce and Run entries now executed on startup. > > Th

Sibelius Scorch Setup Problem.

2008-01-11 Thread Andrew Neil Ramage
Trying to install this software (http://www.musicnotes.com/download/SetupScorchNS.exe) to display music scores I get the following problem. After the initial dialog, another dialog is displayed for a fraction of a second then the installer crashes with the output below. Is this a wine problem

Re: autorun perhaps dangerous (Was: Wine release 0.9.53)

2008-01-11 Thread Maarten Lankhorst
Marcus Meissner schreef: > On Fri, Jan 11, 2008 at 05:36:04PM +0100, Alexandre Julliard wrote: > >> This is release 0.9.53 of Wine, a free implementation of Windows on Unix. >> >> What's new in this release: >> - RunOnce and Run entries now executed on startup. >> > > This will probably g

Re: autorun perhaps dangerous (Was: Wine release 0.9.53)

2008-01-11 Thread John Klehm
On Jan 11, 2008 10:48 AM, Marcus Meissner <[EMAIL PROTECTED]> wrote: > > We probably need some tool to edit Run and RunOnce entries now. > >maybe we need a tool like msconfig for managing services or a page on winecfg. Id say so, a one stop place for anything that has a chance to get executed on

Re: autorun perhaps dangerous (Was: Wine release 0.9.53)

2008-01-11 Thread Steven Edwards
On Jan 11, 2008 12:06 PM, Stefan Dösinger <[EMAIL PROTECTED]> wrote: > I agree it is a pain with "make test" though, and some way to easilly edit > these keys would be helpful maybe we need a tool like msconfig for managing services or a page on winecfg. -- Steven Edwards "There is one thing s

Re: autorun perhaps dangerous (Was: Wine release 0.9.53)

2008-01-11 Thread Stefan Dösinger
Am Freitag, 11. Januar 2008 17:48:06 schrieb Marcus Meissner: > On Fri, Jan 11, 2008 at 05:36:04PM +0100, Alexandre Julliard wrote: > > This is release 0.9.53 of Wine, a free implementation of Windows on Unix. > > > > What's new in this release: > > - RunOnce and Run entries now executed on start

autorun perhaps dangerous (Was: Wine release 0.9.53)

2008-01-11 Thread Marcus Meissner
On Fri, Jan 11, 2008 at 05:36:04PM +0100, Alexandre Julliard wrote: > This is release 0.9.53 of Wine, a free implementation of Windows on Unix. > > What's new in this release: > - RunOnce and Run entries now executed on startup. This will probably give some fallout ;) I wanted to write earlier

Re: Dereference of null ptrs after an ERR has been executed

2008-01-11 Thread Alexandre Julliard
Jeff Latimer <[EMAIL PROTECTED]> writes: > What is the policy for handling the dereferencing of pointers that have > previously been determined to be NULL and an ERR message has been > issued. It seems that there are many cases where Coverity has found > that the test is made but the code fall

Re: Dereference of null ptrs after an ERR has been executed

2008-01-11 Thread Francois Gouget
On Fri, 11 Jan 2008, Jeff Latimer wrote: [...] > In some cases it seems that the only problem may be the TRACE and > there is no other reference which implies that an else may solve the > problem ie. > > if (!ptr) ERR "msg" > else TRACE That or we could modify the TRACE to use wine_dbgstr_[aw](

Re: [PATCH] dbghelp: Implement ImageDirectoryEntryToDataEx

2008-01-11 Thread Andrey Turkin
Alexandre Julliard wrote: > Andrey Turkin <[EMAIL PROTECTED]> writes: > > >> +if (image || addr < nt->OptionalHeader.SizeOfHeaders) >> +{ >> +if (section) >> +{ >> +PIMAGE_SECTION_HEADER sec = IMAGE_FIRST_SECTION(nt); >> +WORD i; >> +fo

Re: [PATCH] dbghelp: Implement ImageDirectoryEntryToDataEx

2008-01-11 Thread Alexandre Julliard
Andrey Turkin <[EMAIL PROTECTED]> writes: > +if (image || addr < nt->OptionalHeader.SizeOfHeaders) > +{ > +if (section) > +{ > +PIMAGE_SECTION_HEADER sec = IMAGE_FIRST_SECTION(nt); > +WORD i; > +for(i = 0; i < nt->FileHeader.NumberOfSecti

Re: Indentation

2008-01-11 Thread Jeff Latimer
Maarten Lankhorst wrote: > Some of wine's code is a mess with indentation, but alexandre won't > commit indentation patches. > This explains some frustrations with patches. Do we have the policy on the web? > Cheers, > Maarten > Jeff

Dereference of null ptrs after an ERR has been executed

2008-01-11 Thread Jeff Latimer
What is the policy for handling the dereferencing of pointers that have previously been determined to be NULL and an ERR message has been issued. It seems that there are many cases where Coverity has found that the test is made but the code falls through to the dereference. In a number of cas