http://bugs.winehq.org/show_bug.cgi?id=21616
Summary: Winamp uses 100% of CPU
Product: Wine
Version: 1.1.38
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ssjgoku75x(a)aol.com
Created an attachment (id=26086)
--> (http://bugs.winehq.org/attachment.cgi?id=26086)
Winamp Logging
I wanted to try out Winamp since it is not for Linux. When I open it, my CPU
usage jumps to 100% and lags the hell out of my system. I attached a log of my
Winamp usage :)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=17443
Summary: Launchpad Enhanced gets stuck in a loop trying to
download updates
Product: Wine
Version: 1.1.15
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winsock
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ehoover(a)mines.edu
Created an attachment (id=19522)
--> (http://bugs.winehq.org/attachment.cgi?id=19522)
WINEDEBUG="+all,-relay" near dialog-generating location
LPE gets stuck in a loop trying to download updated files and re-launch. A
dialog appears (.NET 2.0?) that says (at the beginning of the loop):
Main: Unable to read data from the transport connection: Unknown error
(0x271e).
Address: http://lpe.ocdsoft.com/installer/LaunchpadEnhanced.exe
File:C:\Program Files\Launchpad Enhanced\LaunchpadEnhanced.exe.temp
The error appears to be from passing an invalid memory location to WSARecvFrom
after the original buffer runs out (see abbreviated log attached). Note that
the messages:
0009:trace:winsock:WS2_recv recvmsg sta: (ptr) (ptr) (length)
are from adding a trace to output hdr.msg_iov, hdr.msg_iov->iov_base, and
hdr.msg_iov->iov_len. This message was added to explore why the errno was being
set to 14 (EFAULT), which the recvmsg man page indicates is due to a pointer
being outside the application address space.
The issue might be some form of regression (since LPE worked on Wine 1.0-rc2),
but since the application has an automatic updater it's possible that the
application code changed.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=19643
Summary: Mankind: Page fault on program start
Product: Wine
Version: 1.1.27
Platform: PC-x86-64
URL: http://appdb.winehq.org/objectManager.php?sClass=appli
cation&iId=2409
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: boeser.wolff(a)web.de
Created an attachment (id=22920)
--> (http://bugs.winehq.org/attachment.cgi?id=22920)
backtrace page fault on startup, wine 1.1.27
After installation Mankind crashes with a page fault when the application is
launched.
Mankind's own crash handler is not invoked.
This could be a problem with the program itself, not Wine. See bug 4409 for
details on a similar crash.
Also sent an email to bugs(a)mankind.net (where crash reports by Mankind's crash
handler are send) - not sure if that does anything.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=18130
Summary: VB APPS: Using edit controls context menu crashes
application.
Product: Wine
Version: 1.1.19
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: user32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: martinmnet(a)hotmail.com
Vb applications crash when I click on any selection from edit windows context
menu.
Reason:
menu control is sending WM_COMMAND msg to edit control and shouldnt be.
The VB runtime subclass' the edit control and dies when receiving WM_COMMAND
with the sent wParam.
Solution.
Change menu.c approx line 2561 to check if window is appropriate before sending
WM_COMMAND, i.e. not edit class windows.
Replace edit.c function EDIT_WM_Command
static void EDIT_WM_MenuSelect(EDITSTATE *es, INT code, INT id, HWND control)
{
static INT SelectedItem;
if (id != 0) {
/* Save the currently selected item and return */
SelectedItem = id;
return;
}
switch (SelectedItem) {
case EM_UNDO:
SendMessageW(es->hwndSelf, WM_UNDO, 0, 0);
break;
case WM_CUT:
SendMessageW(es->hwndSelf, WM_CUT, 0, 0);
break;
case WM_COPY:
SendMessageW(es->hwndSelf, WM_COPY, 0, 0);
break;
case WM_PASTE:
SendMessageW(es->hwndSelf, WM_PASTE, 0, 0);
break;
case WM_CLEAR:
SendMessageW(es->hwndSelf, WM_CLEAR, 0, 0);
break;
case EM_SETSEL:
EDIT_EM_SetSel(es, 0, (UINT)-1, FALSE);
EDIT_EM_ScrollCaret(es);
break;
default:
ERR("unknown menu item, please report\n");
break;
}
}
and change edit.c line 5195
case WM_COMMAND:
EDIT_WM_Command(es, HIWORD(wParam),
LOWORD(wParam),(HWND)lParam);
to
case WM_MENUSELECT:
EDIT_WM_MenuSelect(es, HIWORD(wParam),
LOWORD(wParam),(HWND)lParam);
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=18620
Summary: Braid puzzle problem
Product: Wine
Version: 1.1.22
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gabriel.gandul22(a)gmail.com
This is a minor bug but it bothers a lot. First of all let me say that this
game runs really good on wine. But the only problem is when you try to complete
the puzzle. In this part the mouse becomes unresponsive and it goes to the
bottom of the screen to the right.
It's just impossible to beat that part. It happens in every puzzle.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=12623
Summary: yBook: doesn't display page textures
Product: Wine
Version: 0.9.59.
Platform: PC
URL: http://www.spacejock.com/yBook.html
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: laur.olb1(a)gmail.com
Created an attachment (id=12253)
--> (http://bugs.winehq.org/attachment.cgi?id=12253)
Output from running Wine v0.9.59 with yBook v1.5.26
when the latest version of yBook, version 1.5.26, is run, the page textures are
not displayed. Instead, just a black background is shown. Also, if the "hide
desktop" feature is used, the texture is displayed across the whole screen,
however the program is not shown on top of the texture as it is in Windows.
Based on the output, may be a problem in ole32.dll? Attempting to use a native
version of ole32.dll failed, Wine would not even launch the application.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=21833
Summary: Don't know
Product: Wine
Version: 1.1.39
Platform: x86
URL: http://download.opensuse.org/repositories/Emulators:/W
ine/openSUSE_11.2/
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: chatovik(a)gmail.com
When I started Steam Counter-Strike 1.6 48 protocol , Counter-Strike 1.6
crashed. If I started Non-Stean Counter-Strike 1.6 47 protocol , it's work and
I can play on many servers, but If I update Non-Steam Counter-Strike 1.6 with
47 protocol on 48 protocol it crashed too. And If I used 47 protocol , I can
use OpenGL grapics mode , but if I use Steam Counter-Strike 1.6 48 protocol it
write was it don't use OpenGL and it use D3D graphics mode
My graphics card: Nvidia 6100 256 Mb
My OS: openSUSE 11.2 and graphics driver version 190.53
My Wine version: 1.1.39 + gecko
I add in attachment , what I see in console when I started Counter Strike 1.6
steam.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=20506
Summary: Diablo 2 Slow down
Product: Wine
Version: 1.1.32
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: hibbsncc1701(a)yahoo.com
When running Diablo 2 1.12, Opening the map overlay causes a fps drop down to
about 1 fps. This occurs with or without moving your character, Doing an
attack, etc. This affect is enhanced when enemies are being put onto the
screen. Lowering settings doesn't help. This effect is in place until the map
is closed.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=21178
Summary: FTD.COM Living Virtual Flower: Text scrambled and
transparency not working
Product: Wine
Version: 1.1.35
Platform: x86
URL: http://www.gazup.com/n70bJ-install_lvf.15.exe-download
-mirrors
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gaming4jc2(a)yahoo.com
Created an attachment (id=25428)
--> (http://bugs.winehq.org/attachment.cgi?id=25428)
Wine buggies, Notice the LWA_COLORKEY not supported
In Windows XP mode FTD.com's Living Virtual Flower (a spyware free screen
mate), fails to show transparency and has light blue colored blocks around all
animations. Also the text is unreadable and contains random ASCII instead othe
what it should be saying.
In Windows 98 mode the transparency is not an issue but the text still is.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=13091
Summary: Input error compiling c++ sources with mingw
Product: Wine
Version: 1.0-rc1
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: onido89(a)gmail.com
Hi,
i've searched for this bug but i don't know if it just exist, anyway i wanted
to tell you that i've found a bug while i was compiling a source code in c++
language, that was made like this:
--------------------------------------
#include <stdio.h>
int main()
{
int i=1;
char s[40],c;
while(i!=0)
{
printf("Number-->");
scanf("%d%c",&i,&c);
printf("String->");
gets(s);
}
}
--------------------------------------
When i try to use it in winecmd it doesn't get exactly the inputs method (it
overlay the string method, it seems to ignore it...). Anyway try it for
yourself if you want and i hope it will be fixed for 1.0.
Great work anyway, this is the best emulator that i've ever used ;)
Have a nice day, and keep rollin!
GTOnizuka
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.