http://bugs.winehq.org/show_bug.cgi?id=6364
------- Additional Comments From elton(a)schiert.net 2006-02-11 10:43 -------
The game shows up in the uninstaller (but it does not uninstall correctly;
clicking uninstall just seems to run the setup again). I cannot install patch
1.01, 1.02 or 1.03. Tried all Windows Versions, tried running wineboot before
trying to install the patch.
Browsing the Ubisoft forums shows that some Windows users are also affected by
this problem.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=6587
linine(a)freesurf.ch changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|Missing COM interface |Missing COM interface
|Release call in the |Release call in the
|IGraphBuilder implementation|IGraphBuilder implementation
------- Additional Comments From linine(a)freesurf.ch 2006-02-11 10:32 -------
IEnumPins instance (penummt variable) may also leak if the function exits
prematurely.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=6550
------- Additional Comments From ajackson(a)bcs.org.uk 2006-02-11 10:27 -------
When you applied my patch did you run autoconf in the top level wine source
directory afterwards?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3717
------- Additional Comments From mikolaj.zalewski(a)gmail.com 2006-02-11 10:25 -------
Could you try with the current Git (or wine 0.9.25 when it is released). There
were some updates to the toolbar code that could have fixed it.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=6588
Summary: Strange return value of the GraphBuilder_Connect
function
Product: Wine
Version: 0.9.24.
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-directx-dshow
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: linine(a)freesurf.ch
Hello, looking at the quartz.dll sources (filtergraph.c file) noticed the following:
static HRESULT WINAPI GraphBuilder_Connect(IGraphBuilder *iface,
IPin *ppinOut,
IPin *ppinIn)
{
...
hr = IEnumMediaTypes_Next(penummt, 1, &mt, &nbmt);
if (FAILED(hr)) {
ERR("IEnumMediaTypes_Next (%x)\n", hr);
return hr;
}
if (!nbmt) {
ERR("No media type found!\n");
return S_OK; // is this really OK? - DL
}
...
}
If the pins were not connected - is S_OK the suitable return value?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=6550
------- Additional Comments From kkelly(a)cinci.rr.com 2006-02-11 09:58 -------
I tried the latter patch to no avail. Maybe I've found a similar problem with a
different cause.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=6505
------- Additional Comments From ajackson(a)bcs.org.uk 2006-02-11 09:55 -------
But you haven't answered any of the questions, it is very hard to help people
when they refuse to answer questions that may be very basic but also very
informative.
So do you run in opengl or d3d?
Have you tried the latest git version?
Do you add anything to the ./configure command line?
Where do you get the source code from?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=6587
Summary: Missing COM interface Release call in the IGraphBuilder
implementation
Product: Wine
Version: 0.9.24.
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-directx-dshow
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: linine(a)freesurf.ch
Hello. When looking at the quartz.dll sources noticed in the filtergraph.c the
following:
static HRESULT WINAPI GraphBuilder_Connect(IGraphBuilder *iface,
IPin *ppinOut,
IPin *ppinIn)
{
...
hr = IPin_QueryPinInfo(ppinIn, &PinInfo); // line 695 - DL
if (FAILED(hr))
return hr;
hr = IBaseFilter_GetClassID(PinInfo.pFilter, &FilterCLSID);
if (FAILED(hr)) // if it fails
return hr; // the function will return without releasing the filter
pointed by PinInfo.pFilter - DL
...
}
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=6505
------- Additional Comments From atrauzzi(a)gmail.com 2006-02-11 09:33 -------
I'm not a novice.
Trust me, everything is done correctly.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.