Re: VST wrapper

2007-06-24 Thread Nathaniel Gray
By the way, please CC me with replies. I'm not set up to receive mail from the list. Thanks, -n8 -- >>>-- Nathaniel Gray -- Caltech Computer Science --> >>>-- Mojave Project -- http://mojave.cs.caltech.edu -->

VST wrapper

2007-06-24 Thread Nathaniel Gray
Hi, I'm interested in the goal of using Windows VST/VSTi audio plugins on my Intel Mac in OS X. I found the fst project, did some porting, and managed to get a few VSTs to work, which had me pretty stoked. Thanks to the FST folks and the Wine team for making this possible! On the other

fix for wine < 0.9.24 segfault on startup

2007-06-24 Thread Damjan Jovanovic
Hi On Ubuntu 7.04, versions of wine before around 0.9.24 die on startup with an undebuggable segmentation fault. After this bug stopped me from doing 2 regression tests, I decided to reverse regression test for the fix to the bug, and I found that the patch at http://www.winehq.org/pipermail/win

Re: Slackware 11: After Wine update applications crash if WINEDEBUG not set

2007-06-24 Thread Jesse Allen
On 6/24/07, Victor <[EMAIL PROTECTED]> wrote: On Saturday 23 June 2007 09:06, Victor wrote: > After upgrading wine (from 0.9.37 to 0.9.38 or from 0.9.38 to 0.9.39 - I'm > not sure) many graphical applications started crashing if WINEDEBUG+=all or > WINEDEBUG+=relay not set. Please file a bug re

WIDL: Implement support for explicit user handles

2007-06-24 Thread Eric Kohl
This patch implements support for explicit user handles. Regards Eric Kohl ChangeLog: Implement support for explicit user handles. diff --git a/tools/widl/client.c b/tools/widl/client.c index 86ead20..6a84e94 100644 --- a/tools/widl/client.c +++ b/tools/widl/client.c @@ -89,12 +89,1

Re: wine menus

2007-06-24 Thread Vitaliy Margolen
Damjan Jovanovic wrote: Hi At the moment, wine builds fd.o menus by calling winemenubuilder and wineshelllink when shell32's IPersistFile_fnSave is invoked. This both misses menus copied directly into the menu directory without calling IPersistFile_fnSave, and provides no way to remove the menus

Re: mshtml: Implement HTMLDocument_QueryInterface for IHTMLDOMNode, IHTMLElement and IHTMLElement2.

2007-06-24 Thread Jacek Caban
Hi, I've just sent a test showing that native doesn't implement these interfaces so we shouldn't either. It's strange because IDL declaration says something else. And BTW. your patch violates COM QueryInterface rules (not that MS always respects these rules...). Thanks, Jacek

Re: mshtml: Implement HTMLElement_get_children.

2007-06-24 Thread Jacek Caban
Hi, > +elem_vector buf = {NULL, 0, 8}; > + > +TRACE("(%p)->(%p)\n", This, p); > + > +buf.buf = mshtml_alloc(buf.size*sizeof(HTMLElement**)); elem_vector is a self-resizable table, but in this case you know the size while creating it from nsIDOMNodeList::GetLength. I'd suggest to use

Re: Slackware 11: After Wine update applications crash if WINEDEBUG not set

2007-06-24 Thread Victor
On Saturday 23 June 2007 09:06, Victor wrote: > After upgrading wine (from 0.9.37 to 0.9.38 or from 0.9.38 to 0.9.39 - I'm > not sure) many graphical applications started crashing if WINEDEBUG+=all or > WINEDEBUG+=relay not set. I was able to find where crash occurs, but didn't yet find why this ha

Re: msi: Fix use of uninitialized variable (Coverity) (Try 3)

2007-06-24 Thread James Hawkins
On 6/23/07, Andrew Talbot <[EMAIL PROTECTED]> wrote: [Reverting to "Plan A":] This patch should fix Coverity bug CID-562. Additionally, I have pinpointed another suspected use-before-initialization bug, for future consideration. -- Andy. --- Changelog: msi: Fix use of uninitialized variable

Re: msi: Fix use of uninitialized variable (Coverity) (Try 2)

2007-06-24 Thread Paul Vriens
Andrew Talbot wrote: James Hawkins wrote: Please don't check env for NULL; RegCloseKey will just fail harmlessly if env is NULL. We spent a lot of time removing such checks. OK, I shall re-post my first effort as "Try 3". But then why don't you just set env to NULL and leave the rest as is