http://bugs.winehq.org/show_bug.cgi?id=2286
Summary: Foobar2000 audio player has redraw problems
Product: Wine
Version: 20040408
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: askoff(a)luukku.com
Foobar2000 (http://www.foobar2000.org/) is best audio player (for me) in
Windows, and is having couple anoying issues with Wine.
First: The main playlist screen won't redraw at all, if user won't use it.
Second: In Foobar preferences page, all setups are not selectable in left side.
(Try pressing the + box in Core)
Third: Order, Visualization and Seekbar won't remember their position if changed
in top of the main screen.
--
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=2285
Summary: BadMatch in Wadauthor
Product: Wine
Version: 20040505
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-x11driver
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jpakkane(a)yahoo.com
I was using a Doom level editor called WadAuthor (see bug 2269 for more info on
it). It can crash Wine consistently. The steps are as follows:
- start program
- load a wad file
- zoom in until items are shown with bitmaps
- panning around the map causes a crash
Here's the output Wine prints:
warn:gdi:GDI_GetObjPtr Invalid handle (nil)
warn:ntdll:NtCreateFile L"\\??\\C:" not found (c0000034)
warn:file:CreateFileW Unable to create file L"\\\\.\\C:" (status c0000034)
(The above repeats several times)
warn:gdi:GDI_GetObjPtr Invalid handle (nil)
X Error of failed request: BadMatch (invalid parameter attributes)
Major opcode of failed request: 73 (X_GetImage)
Serial number of failed request: 43126
Current serial number in output stream: 43126
Wine failed with return code 1
The crash is definitely caused by the item bitmaps. If you disable the bitmaps
with tools > options > views > disable thing bitmaps, the crash does not occur.
This might be related with bug 447.
--
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=2284
------- Additional Comments From aguenther(a)collab.net 2004-14-06 15:16 -------
Hm, that's odd. I just replaced my patch with the original server.c version and
it got compiled without errors. The only difference I have is that everything
else is already compiled and wine installed. What's up with that? Starting from
scratch results in the above error, that is that I am only able to reproduce
this when I start with a clean build.
--
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=2284
------- Additional Comments From aguenther(a)collab.net 2004-14-06 15:14 -------
Forgot to paste the error output:
gcc -c -I. -I. -I../../include -I../../include -D__WINESRC__ -D_USER32_
-D_WINABLE_ -D_REENTRANT -fPIC -Wall -pipe -mpreferred-stack-boundary=2
-fno-strict-aliasing -gstabs+ -Wpointer-arith -g -O2 -o dde/server.o dde/server.c
dde/server.c:580: pointers are not permitted as case values
--
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=2284
Summary: dde/server.c:580: pointers are not permitted as case
values
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-kernel
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: aguenther(a)collab.net
PROBLEM DESCRIPTION
Using 'gcc (GCC) 3.2.2 20030222 (Red Hat Linux 3.2.2-5)' I ran into a compile
error with the CVS checkout of wine HEAD after executing '/tools/wineinstall'.
...
I am using RedHat 9 with a native Kernel (no customization) on an IBM ThinkPad 40.
MY WORAROUND
Looking up 'case' compile problems with newer gcc compilers I found the
following thread discussion:
http://www.winehq.org/hypermail/wine-devel/2002/11/1283.html
My temporary fix was to apply the following patch, which made me happy, but I am
not sure whether that'll cause other problems or not:
>>> Patch Start
Index: ./dlls/user/dde/server.c
===================================================================
RCS file: /home/wine/wine/dlls/user/dde/server.c,v
retrieving revision 1.16
diff -u -r1.16 server.c
--- ./dlls/user/dde/server.c 26 Apr 2004 23:29:44 -0000 1.16
+++ ./dlls/user/dde/server.c 14 Jun 2004 19:44:18 -0000
@@ -577,7 +577,7 @@
WDML_PostAck(pConv, WDML_SERVER_SIDE, 0, FALSE, FALSE, pXAct->atom,
pXAct->lParam, WM_DDE_REQUEST);
break;
- case CBR_BLOCK:
+ case (WORD)CBR_BLOCK:
ret = WDML_QS_BLOCK;
break;
default:
>>> Patch End
Feel free to route this issue as appropriate or close if invalid.
Thanks for a great product,
-Andreas
--
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=2283
Summary: "warning: use of cast expressions as lvalues is
deprecated"
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: wine-resources
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jjk3(a)msstate.edu
When building WINE CVS, I get the following compiler warnings:
--
make[2]: Entering directory `/home/joeljkp/Wine/wine/tools/wrc'
gcc -c -I. -I. -I../../include -I../../include
-DINCLUDEDIR="\"/usr/local/include/wine\"" -Wall -pipe
-mpreferred-stack-boundary=2 -fno-strict-aliasing -gstabs+ -Wpointer-arith -g
-O2 -o dumpres.o dumpres.c
gcc -c -I. -I. -I../../include -I../../include
-DINCLUDEDIR="\"/usr/local/include/wine\"" -Wall -pipe
-mpreferred-stack-boundary=2 -fno-strict-aliasing -gstabs+ -Wpointer-arith -g
-O2 -o genres.o genres.c
gcc -c -I. -I. -I../../include -I../../include
-DINCLUDEDIR="\"/usr/local/include/wine\"" -Wall -pipe
-mpreferred-stack-boundary=2 -fno-strict-aliasing -gstabs+ -Wpointer-arith -g
-O2 -o newstruc.o newstruc.c
newstruc.c: In function `handle_ani_list':
newstruc.c:805: warning: use of cast expressions as lvalues is deprecated
newstruc.c: In function `new_ani_curico':
newstruc.c:916: warning: use of cast expressions as lvalues is deprecated
gcc -c -I. -I. -I../../include -I../../include
-DINCLUDEDIR="\"/usr/local/include/wine\"" -Wall -pipe
-mpreferred-stack-boundary=2 -fno-strict-aliasing -gstabs+ -Wpointer-arith -g
-O2 -o readres.o readres.c
--
These are minor, and don't cause any problems that I can see, but should
probably be fixed nonetheless. Here's my gcc info:
--
$ gcc --version
gcc (GCC) 3.3.3 20040412 (Gentoo Linux 3.3.3-r6, ssp-3.3.2-2, pie-8.7.6)
$
--
--
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=2282
Summary: IBM Translation Manager v.6.0.4 crashes while loading
Product: Wine
Version: CVS
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-loader
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: phil(a)mail.ru
The program loads a DLL, and Wine starts importing
this DLL's imports from kernel32.dll. It crashes on the first import
in import_dll() function at dlls/ntdll/loader.c:453, which says:
thunk_list->u1.Function = (PDWORD)find_named_export( imp_mod, exports, exp_size,
pe_name->Name,
pe_name->Hint );
This causes an exception because thunk_list happens to be located in
.rdata section of the DLL, which is readonly.
Currently I have hacked this around by making all PE sections
read-write in map_image() in dlls/ntdll/virtual.c, and the program
works.
If a Wine guru would like to fix it, I can give any
support (e.g., ssh access to my computer with the program).
If not - I will be using this hacked version of Wine.
--
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=2157
------- Additional Comments From phil(a)mail.ru 2004-13-06 09:11 -------
The change which breaks everything is reverted in Dmitry Timoshkov's "Various
MDI children activation fixes" patch, and it fixes the bug. Thanks, Dmitry! But
the patch is not in the CVS yet ;(
--
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.