http://bugs.winehq.org/show_bug.cgi?id=8376
------- Additional Comments From rankincj(a)yahoo.com 2007-23-05 08:14 -------
Thanks for offering to do this. My packages are:
wine-tools-0.9.36-2.fc5
wine-core-0.9.36-2.fc5
--
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=8376
------- Additional Comments From focht(a)gmx.net 2007-23-05 07:42 -------
Hello,
one of my machines has FC5 partition too (older notebook).
I could try to make comdlg32.dll.so from 0.9.x source tree with that patch and
you temporarily replace old one for testing...
But we have to make sure for gcc/glibc matches (up-to-date FC5).
Though it might take some time (preparations).
Which wine version do you have upgraded to? 0.9.36? 0.9.37?
Regards
--
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=8474
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|fixme:advapi:GetEffectiveRig|ModelicaReference -
|htsFromAclW messages. |Incorrect Fonts
|Incorrect Fonts |
------- Additional Comments From vitaliy(a)kievinfo.com 2007-23-05 07:36 -------
Fixmes are not an error on their own.
--
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=8033
------- Additional Comments From focht(a)gmx.net 2007-23-05 07:23 -------
Hello,
--- quote ---
Dual-core Athlons? Rubbish! By the looks of things, I'm seeing this bug on a 350
Mhz Pentium
--- quote ---
This bug has nothing to do with dual core <whatever> systems.
Please try out my fix and report back if this works for you.
Regards
--
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=7071
------- Additional Comments From felix(a)compsoc.nuigalway.ie 2007-23-05 07:00 -------
The problem does not occur in 0.9.36. I haven't checked to see which version it
was fixed in.
I can attach a sheetshot if necessary to confirm that it doesn't exist anymore.
--
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=8404
------- Additional Comments From trevor_boon(a)yahoo.com 2007-23-05 06:37 -------
I was getting that, but making sure that double-buffering was enabled and adding
the command line "-nointmouse" seemed to circumvent that.
--
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=7776
------- Additional Comments From t.artem(a)mailcity.com 2007-23-05 06:23 -------
As soon as I find some spare time, I'll try to find a patch responsible for this
regression.
--
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=8376
------- Additional Comments From rankincj(a)yahoo.com 2007-23-05 05:42 -------
Like I said, *this is not a development machine*! I install wine from binary
packages!
--
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=7813
------- Additional Comments From mahasler(a)gmail.com 2007-23-05 05:42 -------
I applied the patch against Wine-0.9.37. It works!
However the game crashes to the debugger when you quit. It didn't do that with
older Wine versions as far as I can recall. I don't know whether this has
anything to do with dsound, though. Either way, it's not really a problem, as
the game is now fully playable again.
Thanks!
--
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=3260
------- Additional Comments From focht(a)gmx.net 2007-23-05 05:35 -------
Hello,
while working on StarForce 3, the service/driver installer bumps on incomplete
QueryServiceConfigA/W().
The service display name is queried to get required buffer size but later
forgotten to query the actual value.
The SF service installer doesnt check the QUERY_SERVICE_CONFIGW string values
for NULL ptrs before access (which is the case for missing display name).
--- snip dlls/advapi32/service.c ---
BOOL WINAPI
QueryServiceConfigW( SC_HANDLE hService,
LPQUERY_SERVICE_CONFIGW lpServiceConfig,
DWORD cbBufSize, LPDWORD pcbBytesNeeded)
{
...
/* now do the strings */
p = (LPBYTE) &lpServiceConfig[1];
n = total - sizeof (QUERY_SERVICE_CONFIGW);
....
sz = n;
r = RegQueryValueExW( hKey, szGroup, 0, &type, p, &sz );
if( ( r == ERROR_SUCCESS ) || ( type == REG_SZ ) )
{
lpServiceConfig->lpLoadOrderGroup = (LPWSTR) p;
p += sz;
n -= sz;
}
/* +++ */
sz = n;
r = RegQueryValueExW( hKey, szDisplayName, 0, &type, p, &sz );
if( ( r == ERROR_SUCCESS ) || ( type == REG_SZ ) )
{
lpServiceConfig->lpDisplayName = (LPWSTR) p;
p += sz;
n -= sz;
}
/* +++ */
...
/* +++ */
TRACE("Display name = %s\n", debugstr_w(lpServiceConfig->lpDisplayName) );
/* +++ */
}
--- snip dlls/advapi32/service.c ---
With service display name correctly filled in, the installer is happy at this stage.
Regards
--
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.