http://bugs.winehq.org/show_bug.cgi?id=5614
wine.dev(a)web.de changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |wine.dev(a)web.de
------- Additional Comments From wine.dev(a)web.de 2007-21-01 15:25 -------
Does a link from "winspool.drv.so" to "winspool.dll.so" help this app?
Can you please attach a log with:
WINEDEBUG="+winspool,+print,+loaddll"
Thanks
--
By by ... Detlef
--
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=7214
------- Additional Comments From eric.pouech(a)wanadoo.fr 2007-21-01 14:52 -------
it crashes because '%c' with 0 as parameter terminates the string before the
trailing \n
- when used without +msvcrt, we get very seldom traces, hence the buffer used
for the output is never flushed (it's flushed when a \n is sent) and overflows
at some point
- when used with +msvcrt, the buffer is flushed from time to time by the various
traces, hence we never see the overflow
I'll send a patch for the '%c' issue, and I'm still looking at the demangling issue.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
http://bugs.winehq.org/show_bug.cgi?id=3948
wine.dev(a)web.de changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |wine.dev(a)web.de
------- Additional Comments From wine.dev(a)web.de 2007-21-01 14:29 -------
Please retry with a current wine version and fill an
entry in the appdb ( http://appdb.winehq.org/ ) for your version
of Advanced MP3 Catalog.
Thanks
--
By by ... Detlef
--
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=3791
wine.dev(a)web.de changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |wine.dev(a)web.de
------- Additional Comments From wine.dev(a)web.de 2007-21-01 14:17 -------
CUPS-Classes are on my Roadmap, but that needs a while.
--
By by ... Detlef
--
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=4999
wine.dev(a)web.de changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |wine.dev(a)web.de
Severity|major |normal
Keywords|NoAppDBEntry |
------- Additional Comments From wine.dev(a)web.de 2007-21-01 14:14 -------
The attached ps-file seems to be broken
Please retry with an actual wine version,
create and then attach a log with:
WINEDEBUG"=+winspool,+print,+psdrv,+loaddll" wine 2>log.txt yourapp.exe
Thanks
--
By by ... Detlef
--
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=7060
wine.dev(a)web.de changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |wine.dev(a)web.de
------- Additional Comments From wine.dev(a)web.de 2007-21-01 14:01 -------
The first fixme about ENUM_PRINTER_CONNECTIONS was unrelated to all bugs
before and i just send a Patch to made that check more silent.
Please create and then attach a log with:
WINEDEBUG"=+winspool,+print,+psdrv,+loaddll" wine 2>log.txt yourapp.exe
Thanks.
--
By by ... Detlef
--
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=3169
------- Additional Comments From elektroschock(a)linuxmail.org 2007-21-01 13:25 -------
As of 0.9.29 one problem, the whitespace overlay as shown in the screenshot
attachment, probably due to the rebar bugfix, is fixed. So the back button is
displayed correctly. But an alignment problem of the field which holds the
location path still exists. That field is now moved to the right side and of
minimum size. As the location bar holds the path, maybe that is no display
component problem.
err:listview:LISTVIEW_WindowProc unknown msg 2005 wp=00000001 lp=00000000
fixme:shell:SHGetFileInfoW This combination of flags is not supported yet
fixme:shell:SHGetFileInfoW This combination of flags is not supported yet
fixme:shell:SHGetFileInfoW This combination of flags is not supported 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.
http://bugs.winehq.org/show_bug.cgi?id=7214
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2007-21-01 13:18 -------
>Does the same apply when you rebuild from scratch ?
I always do a "rebuild all" , which compiles everything from scratch.
I'm not sure whether it's a bug that 'dt' is zero in demangle_datatype, but that
seems to be the reason it crashes, when it tries to print the error. The crash
is easy to reproduce (very dumb example):
1. For example apply the patch below:
diff --git a/dlls/kernel32/sync.c b/dlls/kernel32/sync.c
index eaa0f70..4bf86d5 100644
--- a/dlls/kernel32/sync.c
+++ b/dlls/kernel32/sync.c
@@ -86,7 +86,12 @@ HANDLE get_BaseNamedObjects_handle(void)
* Sleep (KERNEL32.@)
*/
VOID WINAPI Sleep( DWORD timeout )
-{
+{char c;
+int i;
+c=0;
+for(i=0;i<100;i++)
+ERR("this will crash %c\n",c);
+
SleepEx( timeout, FALSE );
}
2. Run the following program:
#include "windows.h"
int main()
{
Sleep(10);
}
You'll get the same crash...
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
http://bugs.winehq.org/show_bug.cgi?id=7226
------- Additional Comments From ben(a)atomnet.co.uk 2007-21-01 13:13 -------
The ALSA driver is currently broken so use the OSS one. The other messages
basically say that your OpenGL libraries (32bit ones) are missing and that you
need to install them. This issue is your end not ours.
Just to make sure though, have you installed anything in Wine yet or done
anything silly like making your Wine C: drive your real Windows drive?
--
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=7232
stefandoesinger(a)gmx.at changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |wine-bugs(a)winehq.org
AssignedTo|wine-bugs(a)winehq.org |blin(a)gmx.net
--
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.