http://bugs.winehq.org/show_bug.cgi?id=10249
Summary: Battlefield2/SafeDisc 4.x and Punkbuster services cause
lockup: child processes debugging misconception
Product: Wine
Version: CVS/GIT
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-kernel
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Created an attachment (id=8876)
--> (http://bugs.winehq.org/attachment.cgi?id=8876)
WINEDEBUG=-all,+server,+tid,+loaddll,+seh wine ./BF2.exe +fullscreen 0 +szx 800
+szy 600 &>/tmp/debug_pipe
Hello,
while testing some PunkBuster stuff on popular games, I came across Battlefield
2 which employs SafeDisc 4.x
It seems there is a problem with debuggers in chained child processes.
Consider following scenario:
--- snip process list ---
pid threads parent executable (all id:s are in hex)
0000001b 1 00000008 'PnkBstrA.exe'
0000000c 2 00000008 'explorer.exe'
0000000a 2 00000008 '~e5.0001'
00000008 4 00000000 'BF2.exe'
--- snip process list ---
--- snip thread list ---
process tid prio (all id:s are in hex)
0000001b
0000001c 0
0000000c
00000010 0
0000000d 0
0000000a
00000012 0
0000000b 0
00000008
0000001a 1
00000014 15
00000013 0
00000009 0
--- snip thread list ---
"BF2.exe" = parent (game)
"~e5.0001" = 1st child = SafeDisc 4.x process = "debugger"
"PnkBstrA.exe" = 2nd child = PunkBuster Update Service
The 1st child acts as debugger for the parent "BF2.exe" and receives all debug
events (process, thread creation, dll load/unload...)
There are lots of breakpoint events triggered from parent.
This is part of SafeDisc 4.x and used for on-the-fly decryption of code
sections (child decrypts code of father).
When PunkBuster is initialized (loading of pbcl = client, pbag = agent), the
following services should get started: PnkBstrA.exe, PnkBstrB.exe and finally
the kmode driver PnkBstrK.exe
The service process "PnkBstrA.exe" is started from main process "BF2.exe"
(which is a debuggee itself).
No debug flags (DEBUG_PROCESS | DEBUG_ONLY_THIS_PROCESS) are specified in
process creation flags.
The debugger (child of parent, receives the process creation event) does not
make debugger_attach() to the newly created child process.
The child process seems to inherit the state of being a "debuggee": wine server
-> new_process -> set_process_debugger( process, parent->debugger );
The parent got its process->debugger from debugger_attach().
This leads to a problem in child process startup code:
"dlls/kernel32/process.c:start_process()" checks the PEB->BeingDebugged field
and if set, a system breakpoint is encountered before the entry code is called.
This breakpoint results in debug event - seen by debugger.
Unfortunately this event is _not_ expected by debugger because it didn't expect
another debuggee (child) to be created.
Ok, long story short solution: If you debug a process by attaching to an
already created process, you _must_ treat default debugging flags as if the
process has been created with DEBUG_ONLY_THIS_PROCESS, meaning that all childs
created by debuggee will NOT automagically become debuggees.
Short and (hopefully) acceptable patch snippet:
--- snip ---
diff --git a/server/debugger.c b/server/debugger.c
index a64a17a..c59f3a0 100644
--- a/server/debugger.c
+++ b/server/debugger.c
@@ -444,6 +444,7 @@ static int debugger_attach( struct process *process, struct
thread *debugger )
resume_process( process );
return 0;
}
+ process->create_flags |= DEBUG_ONLY_THIS_PROCESS;
return 1;
error:
--- snip ---
And yes, the patch (snippet) works as intended (tm) ;-)
Attached for sake of completeness is relevant server trace.
Search for "001c:trace:seh:raise_exception code=80000003 flags=0
addr=0x7b870ed8 " to the point where the entry system breakpoint is triggered.
Regards
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=20230
Summary: GetThreadTimes() and the Actual and Pseudo Current
Thread Handles
Product: Wine
Version: 1.1.30
Platform: PC
URL: http://rh-software.com
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntdll
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ray(a)pobox.co.uk
Some time ago I had an issue with SIV being unable to read the thread CPU time
usage when using GetThreadTimes(). I tracked down to the following and then did
a work-a-round.
The "Current Thread" effectively has 2 current thread handles, these are the
actual thread handle and the ~0 pseudo handle as returned by
GetCurrentThread(). When a call is made to GetThreadTimes() this calls
NtQueryInformationThread( ThreadTimes ) which contains the test "if (handle ==
GetCurrentThread())". As a result of this when GetThreadTimes() is called with
the actual thread handle no data is returned.
\WINE-1.1.30\dlls\ntdll\thread.c(1011): if (handle == GetCurrentThread())
I suspect the code should be changed to allow both the pseudo and actual thread
handles to be used as a minimum, better still would, when possible, be to
implement this function for any thread.
While searching the source I also noticed:
NTSTATUS WINAPI NtSetInformationThread( HANDLE handle, THREADINFOCLASS class,
LPCVOID data, ULONG length )
{
NTSTATUS status;
switch(class)
{
case ThreadZeroTlsCell:
if (handle == GetCurrentThread())
And suspect that code would benefit from a similar fix.
--
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=23431
Summary: provide a stub for ntdll.NtSystemDebugControl()
(Ollydbg 2.x)
Product: Wine
Version: 1.2-rc5
Platform: x86
URL: http://www.ollydbg.de/version2.html
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: ntdll
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Hello,
a simple one...
Ollydbg 2.x uses NtSystemDebugControl( DebugSysReadVirtual, ...) to read kernel
memory (driver/OS address space) for informational purposes.
Failure to do so doesn't cause harm.
Although this approach doesn’t require any additional kernel driver (only the
SeDebugPrivilege privilege on the running process) it's only useful for Windows
XP systems. It's disallowed since Windows Vista/Windows 7.
Not really useful in Wine but it obviously needs a stub.
--- snip ---
wine: Call from 0x7bc3d2d0 to unimplemented function
ntdll.dll.NtSystemDebugControl, aborting
First chance exception: unimplemented function ntdll.dll.NtSystemDebugControl
called in 32-bit code (0x7bc3d2d0).
...
=>0 0x7bc3d2d0 __wine_spec_unimplemented_stub+0x50(module="ntdll.dll",
function="NtSystemDebugControl")
[/opt/wine/wine-build/dlls/ntdll/../../../wine-git/dlls/ntdll/exception.c:268]
in ntdll (0x00334434)
1 0x7bc1f895 __wine_stub_NtSystemDebugControl+0x28() in ntdll (0x00334434)
2 0x004467ae in ollydbg (+0x467ad) (0x00334460)
3 0x0044698b in ollydbg (+0x4698a) (0x00334484)
--- snip ---
Dump params and return STATUS_NOT_IMPLEMENTED to keep it running ;-)
Regards
--
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=27222
Summary: dbghelp.dll.SymEnumSourceFilesW needed (ollydbg2)
Product: Wine
Version: 1.3.20
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: dbghelp
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Hello,
while attaching to a target using JIT (replacing winedbg), the following crash
occurred:
--- snip ---
wine: Call from 0x7b838aa3 to unimplemented function
dbghelp.dll.SymEnumSourceFilesW, aborting
--- snip ---
A stub keeps it from crashing (though it should not be hard to implement a wide
character version).
+tid,+dbghelp:
--- snip ---
...
fixme:dbghelp:SymEnumSourceFilesW 0x58 400000 (null) 0x4c06d8 0x400000: stub!
fixme:dbghelp:SymEnumSourceFilesW 0x58 68350000 (null) 0x4c06d8 0x68350000:
stub!
fixme:dbghelp:SymEnumSourceFilesW 0x58 68490000 (null) 0x4c06d8 0x68490000:
stub!
fixme:dbghelp:SymEnumSourceFilesW 0x58 68530000 (null) 0x4c06d8 0x68530000:
stub!
fixme:dbghelp:SymEnumSourceFilesW 0x58 68590000 (null) 0x4c06d8 0x68590000:
stub!
fixme:dbghelp:SymEnumSourceFilesW 0x58 685b0000 (null) 0x4c06d8 0x685b0000:
stub!
fixme:dbghelp:SymEnumSourceFilesW 0x58 685f0000 (null) 0x4c06d8 0x685f0000:
stub!
...
--- snip ---
Regards
--
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=27802
Summary: ollydbg2 crashes on unimpl
dbghelp.dll.SymEnumSourceLinesW stub
Product: Wine
Version: 1.3.24
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: dbghelp
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Hello,
ollydbg2 crashes when trying to display source:
--- snip ---
...
wine: Call from 0x7b8384bb to unimplemented function
dbghelp.dll.SymEnumSourceLinesW, aborting
--- snip ---
Stop at process main (dlls along with their debug syms loaded).
"View" -> "Source Files" -> double click any source file
$ wine --version
wine-1.3.24-174-g4b4dd30
Regards
--
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.
https://bugs.winehq.org/show_bug.cgi?id=39672
Bug ID: 39672
Summary: Folder names not clickable
Product: Wine
Version: 1.7.55
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: strife(a)home.se
Distribution: ---
Created attachment 52892
--> https://bugs.winehq.org/attachment.cgi?id=52892
clicking multiple folder texts
When opening a file, in Rhino3d, nothing happens when you click the names of
the folders, no files shown or updated.
In order to show files you must click the folder icon for anything to update.
Worked in 1.7.4
--
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.
https://bugs.winehq.org/show_bug.cgi?id=39635
Bug ID: 39635
Summary: Hungarian Excel Viewer 2007: "Open" dialog on Win8
does not refresh correctly
Product: Wine
Version: 1.8-rc1
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: wylda(a)volny.cz
Distribution: ---
Continuation of bug 33736.
When you set Win version to 8 and then you want to open an XLS file in a
folder, you notice, that the existing file (C:\Users\text.xls) is not listed,
so there is nothing to open.
The problem is, that the folder content does not refresh, even if you right
click and select refresh from context menu.
The trick is, that in File dialog you can't click on "User" link, but you have
to click on the folder-icon standing on the left.
It has nothing to do, with filtering (*.xls etc.). For example you can click on
_icon_ of "Program files", then all the folders are listed. When you then click
on "Users" _link_, it still shows content of "Program Files" instead of
"Users".
--
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.
https://bugs.winehq.org/show_bug.cgi?id=45920
Bug ID: 45920
Summary: Crossfire EU - program error at start
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: luca.finizio.mgbx(a)hotmail.it
Distribution: ---
Created attachment 62447
--> https://bugs.winehq.org/attachment.cgi?id=62447
detailed information
When I run the program I get a Program Error.
You can download the program here:
http://crossfire.gamerage.com/EN/Download/Client/
--
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.
https://bugs.winehq.org/show_bug.cgi?id=38792
Bug ID: 38792
Summary: Error at trying to open CROSSFIRE (HGWC)
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: hackother(a)hotmail.com
Distribution: ---
Created attachment 51717
--> https://bugs.winehq.org/attachment.cgi?id=51717
Error with HGWC
Error with HGWC
--
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=28075
Summary: total commander ultima prime 5.5 does not start
Product: Wine
Version: 1.3.26
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: martin.suc(a)googlemail.com
Hi,
Total commander ultima prime version 5.5 has been installed but did not
start.
Error: The program TC UP.exe has encountered a serious problem and needs to be
close.
If you can please let me know how to investigate to give you more
information.
Kind Regards,
Martin
--
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=13249
Summary: Putty: Yes/No/Cancel dialog moving with keyboard arrows
Product: Wine
Version: unspecified
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: munozferna(a)gmail.com
I was trying to create an automated test for putty, and I noticed that there is
a problem between the Cancel and No button on a Yes/No/Cancel dialog. There
seem to be '2' controls between them when you move through the buttons with the
keyboard arrows. This dialog appears when establishing a connection to a
server, putty asks for a confirmation to accept rsa2 keys. I also noticed that
the OK / Cancel dialog seems to have 'two' more tabs position, so instead of
going to OK when you press arrow key on Cancel, it goes 'nowhere' two times. If
you use the tab key it seems to work fine. I am currently using wine-1.0-rc1.
--
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=16058
Summary: thumbnail view in total commander does not work
correctly
Product: Wine
Version: 0.9.46.
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: d-84(a)bk.ru
Created an attachment (id=17284)
--> (http://bugs.winehq.org/attachment.cgi?id=17284)
thumbnail view
thumbnail view in total commander does not work correctly
os is ubuntu 7.10,
wine is 0.9.46-0ubuntu1
total commander is 7.02a and 7.01.
--
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=22676
Summary: The icon of some applications does not show up in the
Gnome panel (affects Total Commander 7.50a, µTorrent
2.0.1)
Product: Wine
Version: 1.1.43
Platform: x86-64
URL: http://www.ghisler.com/amazons3.php
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alexandru.balut(a)gmail.com
Created an attachment (id=27926)
--> (http://bugs.winehq.org/attachment.cgi?id=27926)
Wine apps as they show up in Window List in the Gnome panel
Start Total Commander 7.50a, notice the application appears in the Window List
component of the Gnome panel, but it has no icon. (See screenshot). Same
happens with uTorrent 2.0.1.
Foobar2000 1.0 works fine.
Ubuntu 10.04 64 and Ubuntu 9.10 64.
--
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=25989
Summary: Total Commander: Crashes when clicking the current
directory field is clicked
Product: Wine
Version: 1.3.12
Platform: x86-64
URL: http://www.ghisler.com/amazons3.php
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alexandru.balut(a)gmail.com
Created an attachment (id=33128)
--> (http://bugs.winehq.org/attachment.cgi?id=33128)
Console log when I stat TC and click the blank space in the current directory
field
Total Commander shows two panels and each shows, at the top, the current
directory (it shows, for example, "c:\*.*"). Click in that field of the current
panel, in the blank space after the showed path. Notice the application
crashes.
--
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=25893
Summary: shell32:autocomplete test fails under
WINEDEBUG=warn+heap
Product: Wine
Version: 1.3.12
Platform: x86-64
URL: http://test.winehq.org/data/4454770cbcb8948b5545498f89
831bc2d07a4767/wine_ae-ub1004-heap/shell32:autocomplet
e.html
OS/Version: Linux
Status: NEW
Keywords: download, regression, source
Severity: minor
Priority: P2
Component: shell32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
CC: arethusa26(a)gmail.com
See
http://test.winehq.org/data/4454770cbcb8948b5545498f89831bc2d07a4767/wine_a…
There's also some valgrind logs that may be useful:
http://austinenglish.com/logs/valgrind/2011-01-25-11.02/vg-shell32_autocomp…
This is a regression, introduced by:
7a6c0d2f466793852d273890c67bc4e1c00cebb5 is the first bad commit
commit 7a6c0d2f466793852d273890c67bc4e1c00cebb5
Author: Andrew Nguyen <anguyen(a)codeweavers.com>
Date: Fri Jan 21 04:56:22 2011 -0600
shell32: Fix initial reference count for a new IAutoComplete instance.
:040000 040000 92481f8501c111a6d221666d4e7d6c701efbd43b
cfdc1adbe3b08e45fd6cb3d877a9d6750fd15570 M dlls
--
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=25987
Summary: Total Commander: Crashes when trying to copy files
Product: Wine
Version: 1.2-rc6
Platform: x86-64
URL: http://www.ghisler.com/amazons3.php
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alexandru.balut(a)gmail.com
Created an attachment (id=33125)
--> (http://bugs.winehq.org/attachment.cgi?id=33125)
Console log when 7.56a crashes. Nothing was printed after I pressed F5.
Steps to reproduce:
1. Open Total Commander,
2. Press F5, notice the application tries to open some windows and then
crashes.
wine-1.3.12
Total Commander 7.56a, 7.50a
--
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=22693
Summary: Total Commander: Invisible controls in a dialog window
get focus when pressing RIGHT
Product: Wine
Version: 1.1.44
Platform: x86-64
URL: http://www.ghisler.com/amazons3.php
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alexandru.balut(a)gmail.com
Created an attachment (id=27960)
--> (http://bugs.winehq.org/attachment.cgi?id=27960)
Screenshot of dialog window which appears when pressing DEL in Total Commander
- Press DEL to delete a file, notice a dialog window appears asking "Do you
really want to delete ...?", and the Yes button is focused (see attached
screenshot).
- Pressing RIGHT (5 times) produces the following results:
1. The No button is focused
2. None of the buttons is focused!
3. None of the buttons is focused!
4. The Cancel button is focused
5. The Yes button is focused
This behavior is different than on Vista, where pressing RIGHT (3 times)
produces:
1. The No button is focused
2. The Cancel button is focused
3. The Yes button is focused
Some more info:
On Vista, pressing TAB in this context has the same effect as pressing RIGHT.
In Wine, pressing TAB in this context works fine (similar to Vista).
Total Commander 7.50a
wine-1.1.44
Ubuntu 10.04 64
--
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=26084
Summary: Total Commander: Incorrect character appears instead
of backslash in the UI
Product: Wine
Version: 1.3.13
Platform: x86-64
URL: http://www.ghisler.com/amazons3.php
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alexandru.balut(a)gmail.com
Created an attachment (id=33266)
--> (http://bugs.winehq.org/attachment.cgi?id=33266)
Total Commander Operations Queue window showing an incorrect character
Steps to reproduce: press F5 to copy a file, press F2 to queue the operation,
notice a new window appears showing the operations queue, notice it shows a
Y-like character instead of the "\" character. (see the screenshot)
--
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=22845
Summary: Total Commander: Application crashes when trying to
display system information
Product: Wine
Version: 1.1.44
Platform: x86-64
URL: http://www.ghisler.com/amazons3.php
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alexandru.balut(a)gmail.com
Created an attachment (id=28211)
--> (http://bugs.winehq.org/attachment.cgi?id=28211)
Console log (showing that a stack overflow happened)
Start Total Commander, go to menu Commands -> System Information..., notice the
application crashes.
Total Commander 7.50a
Ubuntu 10.04 64
--
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=22264
Summary: Total Commander: Button not drawn properly when the
window is activated and the button was hidden
Product: Wine
Version: 1.1.41
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P4
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alexandru.balut(a)gmail.com
Start Total Commander, Ctrl F, left-click on the "New URL..." button, notice a
"ftp" window opens, move it so it partially covers the "New URL..." button you
just pressed (see attached screenshot), press ESC, notice the button is not
drawn correctly (see attached screenshot).
Total Commander 7.50a
--
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=22263
Summary: Total Commander: Main window becomes dead when the FTP
Connect window is open and you switch workspaces
Product: Wine
Version: 1.1.41
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alexandru.balut(a)gmail.com
- Start an unregistered (shareware) Total Commander: now you have the main
window and the "please register" window.
- Ctrl Alt Right, Ctrl Alt Left: notice the main window is mainly black (see
attached screenshot).
- Close the shareware window by pressing 1, 2 or 3: notice the main TC window
is still unresponsive, and still looks dead.
- Ctrl Alt Right, Ctrl Alt Left: notice the main TC window works properly.
The same happens when the following windows are open (and you switch
workspaces):
- FTP Connect (Ctrl F)
- FTP New Connection (Ctrl N)
- "No files selected!" (in a panel, go over "..", press Enter twice, press F5)
It does NOT happen with:
- File Copy (F5)
The main window should not become unresponsive..
Total Commander 7.50a
--
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=21766
Summary: Total Commander: Right-clicking a file and choosing a
menu item acts as Rename
Product: Wine
Version: 1.1.38
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alexandru.balut(a)gmail.com
Created an attachment (id=26313)
--> (http://bugs.winehq.org/attachment.cgi?id=26313)
Shows what happens when a menu item is clicked
Right-click a regular file and wait for the menu to show up, then click any of
the following menu items: Cut, Copy, Create Link, Delete, Properties. What it
does is as if the Rename item is clicked.
--
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=22491
Summary: Total Commander: Pressing the "Program information"
button opens multiple windows instead of just one
Product: Wine
Version: 1.1.42
Platform: x86-64
URL: http://www.ghisler.com/amazons3.php
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alexandru.balut(a)gmail.com
Created an attachment (id=27552)
--> (http://bugs.winehq.org/attachment.cgi?id=27552)
useless attachment showing the two help windows and the button which has been
pressed twice
- Start Total Commander 7.50a - NOT REGISTERED, notice the "This program is
Shareware" window.
- Press the "Program information" twice, notice it opens 2 windows showing
"Total Commander Help Index". On XP it opens only one.
--
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=33489
Bug #: 33489
Summary: WinRAR 5.0 beta 1 help causes HH crash
Product: Wine
Version: 1.5.29
Platform: x86
URL: http://www.rarlabs.com/rar/wrar50b1.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: hhctrl.ocx
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: t.artem(a)mailcity.com
Classification: Unclassified
Created attachment 44328
--> http://bugs.winehq.org/attachment.cgi?id=44328
`wine start WinRAR.chm` backtrace
That's it.
--
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=31922
Bug #: 31922
Summary: Wine 1.4 closes Totalcmd64.exe when viewing image
files via Imagine plugin
Product: Wine
Version: 1.4
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: karl.heilen(a)freenet.de
Classification: Unclassified
Created attachment 42028
--> http://bugs.winehq.org/attachment.cgi?id=42028
trace file created by Wine 1.4 before terminating Total Commander 8.01 x64 and
its plugin Imagin 1.08 x64
Environment:
------------
Ubuntu 12.04.1 x64
kernel 3.2.0-31
Wine 1.4 amd64
Total Commander 8.01 x64
Total Commander Plugin "Imagine 1.08 x64"
Steps to reproduce:
-------------------
Viewing any image file, *.jpg or *.png.
Simply selecting random menu items inside the Total Commander lister plugin
will quickly trigger a fatal Wine exception.
Such an exception will not happen if I use
Total Commander 8.01 x32
Total Commander Plugin "Imagine 1.08 x32"
on the same
Ubuntu 12.04.1 x64
kernel 3.2.0-31
Wine 1.4 amd64
environment.
Such an exception will also not happen if I use
Total Commander 8.01 x64
Total Commander Plugin "Imagine 1.08 x64"
Windows 7 SP1 x64
--
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.
https://bugs.winehq.org/show_bug.cgi?id=41991
Bug ID: 41991
Summary: total commander label of partition
Product: Wine
Version: 1.9.22
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: andrej8anubis(a)gmail.com
Distribution: ---
Created attachment 56403
--> https://bugs.winehq.org/attachment.cgi?id=56403
none label
Total commander does not show a label of the partition
instead, _none_ is written where label should be as show in the picture in
attachment
--
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.
https://bugs.winehq.org/show_bug.cgi?id=38565
Bug ID: 38565
Summary: Total Commander fails to redraw long list with Source:
Filename setting
Product: Wine
Version: 1.7.42
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: katsunori.kumatani(a)gmail.com
Distribution: ---
How to reproduce:
First be sure you are in the "Source: Only file names" view option, at the top,
should be fourth item from the left in the default button bar.
Then go into a directory with a huge number of files/folders, like Z:\usr\bin
(/usr/bin), should be plenty.
Scroll to the right by pressing right arrow (the files should be in columns).
While scrolling, the view is completely messed up. You need to Refresh it or
force a redraw to display properly.
I suspect it's some unimplemented "erase background" messages in Wine? I'm not
too knowledgeable for specifics unfortunately.
Download 32-bit version from: http://www.ghisler.com/
--
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=22440
Summary: Total Commander: The panels showing Brief are not
resized vertically when the application window is
resized vertically
Product: Wine
Version: 1.1.42
Platform: x86-64
URL: http://www.ghisler.com/amazons3.php
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alexandru.balut(a)gmail.com
Created an attachment (id=27481)
--> (http://bugs.winehq.org/attachment.cgi?id=27481)
Screenshot - Brief panel not resized when window is resized vertically
- Press Ctrl F1, notice the panel is in "Brief" mode (and has a horizontal
scrollbar instead of a vertical one).
- Resize the window vertically, make it smaller (or larger - see screenshot),
notice the Brief panel is not resized.
Total Commander 7.50a
--
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=22265
Summary: Total Commander: Application opens a window which
should be visible but is hidden by the current window
Product: Wine
Version: 1.1.41
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alexandru.balut(a)gmail.com
1. Click (menu) Commands -> Search, to open the "Find Files" window.
2. Click the "Advanced" tab, click "Date between:".
3. Click the ">>" button to open the "Date:" window. This bit is annoying,
because it's a bit random.. the "Date:" window is normally visible (see
attached screenshot), but sometimes it is hidden.
4. In case it's visible, while it is still open, click the "Find Files" window,
then click ESC.
5. Now, whenever you click the ">>" button, the "Date:" window is opened but it
is hidden. You can also notice that after you click ">>", the "Find Files"
window still appears as focused (even though the hidden "Date:" window has the
focus now), and when you click it, it is (properly) redrawn as not focused.
The "Date:" window should always be visible when opened.
Total Commander 7.50a shareware
System -> Preferences -> Appearance -> Visual Effects -> None
--
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=22333
Summary: Total Commander: Application freezes when the current
directory field is editable, and you right-click a
regular file and click Properties
Product: Wine
Version: 1.1.42
Platform: x86-64
URL: http://www.ghisler.com/amazons3.php
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alexandru.balut(a)gmail.com
Created an attachment (id=27322)
--> (http://bugs.winehq.org/attachment.cgi?id=27322)
Application freezed when clicked properties on a regular file and current
directory field was editable
- Start Total Commander, go to c:\windows\.
- Click the blue bar which shows the path to the current directory, notice it
becomes an edit box and you can edit the current path.
- Right click any regular file, click Properties, notice the application
freezes (see screenshot) and a message about a stack overflow shows up in the
console, for example:
err:seh:setup_exception_record stack overflow 1568 bytes in thread 0020 eip
7bc3ecde esp 00230d10 stack 0x230000-0x231000-0x330000
--
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=22255
Summary: Total Commander: Deleting the 1st or 2nd character in
an edit box deletes the all of them
Product: Wine
Version: 1.1.41
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alexandru.balut(a)gmail.com
Press F5 to copy a file, now you are in an edit box; press Home then press
Delete to delete the 1st character; notice the entire contents of the edit box
disappears. The same happens when you delete the 2nd character. The expected
result is to delete a single character. This does not happen when you delete
other characters.
Total Commander 7.50a
Ubuntu 9.10
--
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=22690
Summary: Total Commander: Cancelling a file copy operation does
not work
Product: Wine
Version: 1.1.44
Platform: x86-64
URL: http://www.ghisler.com/amazons3.php
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alexandru.balut(a)gmail.com
Created an attachment (id=27958)
--> (http://bugs.winehq.org/attachment.cgi?id=27958)
Cancelling a file copy operation in Total Commander 7.50a on Vista
Press F5 to copy a large file (at least 200MB), click the Cancel button. Notice
nothing happens, and the file continues to be copied. On Vista, a dialog window
appears saying "User abort!".
Press F6 to move a large file to a different partition, click the Cancel
button, notice after a while the "User abort!" dialog window appears, at this
point the file is copied but it should not have been copied.
Total Commander 7.50a
wine-1.1.44
Ubuntu 10.04 64
--
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=21966
Summary: Total Commander: Application freezes when queue-ing
file copy operations
Product: Wine
Version: 1.1.40
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alexandru.balut(a)gmail.com
Total Commander 7.50a
- Press F5 to copy a (large) file and press F2 to queue the operation,
- Notice problem 1: The window that pops up, showing the queued operations, is
frozen. Thus, it does not show the progress.
- While TC is still copying the file, press F5 to copy a different file and
press F2 to queue the operation.
- Notice problem 2: The main TC window is frozen. After the file copy
operations are finished, the application is again responsive.
--
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.
https://bugs.winehq.org/show_bug.cgi?id=41992
Bug ID: 41992
Summary: total commander, copy dialog - Esc key not working
Product: Wine
Version: 1.9.23
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: andrej8anubis(a)gmail.com
Distribution: ---
Created attachment 56411
--> https://bugs.winehq.org/attachment.cgi?id=56411
copy dialog box at it appears
I am using:
total commander 9.0a 64 bit
linuxmint 18 64 bit
"wine 1.9.23" as shown from : "apt policy wine-staging*"
-->>
wine-staging:
Installed: 1.9.23~ubuntu16.04.1
Candidate: 1.9.23~ubuntu16.04.1
Version table:
*** 1.9.23~ubuntu16.04.1 500
500 http://ppa.launchpad.net/wine/wine-builds/ubuntu xenial/main amd64
Packages
100 /var/lib/dpkg/status
wine-staging-amd64:
Installed: 1.9.23~ubuntu16.04.1
Candidate: 1.9.23~ubuntu16.04.1
Version table:
*** 1.9.23~ubuntu16.04.1 500
500 http://ppa.launchpad.net/wine/wine-builds/ubuntu xenial/main amd64
Packages
100 /var/lib/dpkg/status
<<--
test1 - works fine
==================
- pres F8 for delete a file
- a dialog box appear, asking "do you really want to delete..."
- pres Esc
- the dialog box disappears as it should, as it does in windows. Great
test2 - does not work
==================
- pres F5 for copy file
- a dialog box appears offering me options for how to copy
- pres Esc, the dialog box does not disappear as it does in windows, I am
guessing the problem in wine is, because the cursor is in the text box,where I
can make input from keyboard. But in windows works fine. But...
- ...but if I press Tab two times, so the "cursor" is located on plus (+)
button in copy dialog box, as it is the case in test1, where the "cursor" is
located on the button "yes", and then press Esc key on keyboard, the dialog box
disappears as in windows also for copy dialog box .
The point here is, that if the "cursor" is located on the button, the Esc key
works fine in bothe tests
--
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.
https://bugs.winehq.org/show_bug.cgi?id=46274
Bug ID: 46274
Summary: Total Commander 8.52a: Closing the Multi-Rename window
after using it is slow and messes up the listbox caret
Product: Wine
Version: 4.0-rc1
Hardware: x86
URL: http://web.archive.org/web/20160121065109/http://totalcmd2.s3.amazonaws.com/tcmd852ax32.exe
OS: Linux
Status: ASSIGNED
Severity: normal
Priority: P2
Component: user32
Assignee: gabrielopcode(a)gmail.com
Reporter: gabrielopcode(a)gmail.com
CC: wine-bugs(a)winehq.org
Distribution: ---
1) Launch Total Commander and press CTRL+M or go to Files->Multi Rename Tool...
2) Press "Start!" which should work fine.
3) Now close the Multi-Rename window (i.e. click on Close or press ESC)
Observe how there's a few seconds of freeze lag, after which the listbox caret
in the panel is gone. Switching to the other panel and back brings it back.
I did a few investigations and it seems this is not a problem with the listbox
at all. Rather, it's a problem with recursive SetFocus and window activation,
that's why it's so slow (until it reaches a limit). I'll try to fix it like on
Windows so I'll have to see how Windows handles this situation (with testcases
of course).
It's interesting to note that this does not happen if you don't click on
"Start!" in the Multi-Rename Tool.
--
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.
https://bugs.winehq.org/show_bug.cgi?id=46669
Bug ID: 46669
Summary: delete a file in total commander mounted disk
Product: Wine
Version: 4.0-rc7
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: andrej8anubis(a)gmail.com
Distribution: ---
I have linux mint and permanently mounted drive. When I delete a file in total
commander from this drive, it does not show in Trash in nemo. If I delete a
file in total commander in my home folder, the file does show in trash as
expected.
Am I doing something wrong? Thank you
--
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.
https://bugs.winehq.org/show_bug.cgi?id=46527
Bug ID: 46527
Summary: delete a file in total commander
Product: Wine
Version: 4.0-rc7
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: andrej8anubis(a)gmail.com
Distribution: ---
I have up to date linux mint 19.1 cinnamon and winehq-devel 4.0~rc7~bionic,
both great, I like it...
but, when I delete a file in file manager nemo it gets into the trash. When I
delete a file in total commander, a file is not to be found in the trash. Is
this a bug? Thank you
--
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=30329
Bug #: 30329
Summary: Total Commander 8.0 64-bits beta installer crashes due
to pointer truncation (image base address > 4 GiB)
Product: Wine
Version: 1.5.1
Platform: x86-64
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Classification: Unclassified
Hello,
the extracted installer "INSTALL.EXE" (64 bits PE binary) can be run alone from
"wc0" temp folder.
The installer tries to fill a list box with language strings.
--- snip ---
0026:Starting process L"Z:\\home\\focht\\Downloads\\wc0\\INSTALL.EXE"
(entryproc=0x14000cca0)
...
0026:Call KERNEL32.GetPrivateProfileStringA(140019788 "languages",0022dc90
"18",140019786 "",0022dcf0,00000103,1400226c0
"Z:\\home\\focht\\Downloads\\wc0\\INSTALL.inf") ret=140001c0d
0026:Ret KERNEL32.GetPrivateProfileStringA() retval=00000013 ret=140001c0d
0026:Call KERNEL32.GetLastError() ret=14000e5c0
0026:Ret KERNEL32.GetLastError() retval=00000000 ret=14000e5c0
0026:Call KERNEL32.GetLastError() ret=14000e5c0
0026:Ret KERNEL32.GetLastError() retval=00000000 ret=14000e5c0
0026:Call
user32.SendDlgItemMessageA(0001007e,00000064,00000180,00000000,0022dcf0)
ret=140001cd1
0026:Call window proc 0x7f45d4b788ef
(hwnd=0x10086,msg=LB_ADDSTRING,wp=00000000,lp=0022dcf0)
0026:Ret window proc 0x7f45d4b788ef
(hwnd=0x10086,msg=LB_ADDSTRING,wp=00000000,lp=0022dcf0) retval=00000011
0026:Ret user32.SendDlgItemMessageA() retval=00000011 ret=140001cd1
0026:Call user32.GetDlgItem(0001007e,00000004) ret=140001cfb
0026:Ret user32.GetDlgItem() retval=0001008a ret=140001cfb
0026:Call user32.ShowWindow(0001008a,00000000) ret=140001d06
0026:Call window proc 0x7f45d4b78593
(hwnd=0x1008a,msg=WM_SHOWWINDOW,wp=00000000,lp=00000000)
0026:Ret window proc 0x7f45d4b78593
(hwnd=0x1008a,msg=WM_SHOWWINDOW,wp=00000000,lp=00000000) retval=00000000
0026:Ret user32.ShowWindow() retval=00000001 ret=140001d06
0026:Call
user32.SendDlgItemMessageA(0001007e,00000064,00000181,00000012,40019670)
ret=140001d30
0026:Call window proc 0x7f45d4b788ef
(hwnd=0x10086,msg=LB_INSERTSTRING,wp=00000012,lp=40019670)
0026:trace:seh:raise_exception code=c0000005 flags=0 addr=0x7b8633f9
ip=7b8633f9 tid=0026
0026:trace:seh:raise_exception info[0]=0000000000000000
0026:trace:seh:raise_exception info[1]=0000000040019670
0026:trace:seh:raise_exception rax=0000000000000000 rbx=0000000000000026
rcx=ffffffffffffffff rdx=0000000040019670
0026:trace:seh:raise_exception rsi=0000000000000181 rdi=0000000040019670
rbp=000000000022d2d0 rsp=000000000022d1a0
0026:trace:seh:raise_exception r8=0000000040019670 r9=00000000ffffffff
r10=0000000000000008 r11=000000399ab7c680
0026:trace:seh:raise_exception r12=000000000001f0ac r13=00000001400226c0
r14=0000000000000000 r15=00000001400226c0
--- snip ---
The reason for the crash is a 32 bit pointer truncation -> application bug.
Most likely the original code was Win32 and had been ported to Win64 with some
casts still in there.
(annotated)
--- snip ---
.text:0000000140001D0D movsxd rax, cs:dword_14001F030
.text:0000000140001D14 movsxd r9, r11d ; wParam
.text:0000000140001D17 mov edx, 64h ; nIDDlgItem
.text:0000000140001D1C mov r8d, 181h ; Msg, LB_INSERTSTRING
.text:0000000140001D22 mov rcx, rdi ; hDlg
.text:0000000140001D25 mov [rsp+20h], rax
.text:0000000140001D2A call cs:SendDlgItemMessageA
--- snip ---
The data reference (I only decoded the 32 bits part to show the 32 bit access):
--- snip ---
.data:000000014001F030 dword_14001F030 dd 40019670h
.data:000000014001F034 db 1
.data:000000014001F035 db 0
.data:000000014001F036 db 0
.data:000000014001F037 db 0
--- snip ---
Page fault address: 0000000040019670
If referenced as 64 bits -> 0x140019670 it would be correct:
--- snip ---
.rdata:0000000140019670 db 4Fh ; O
.rdata:0000000140019671 db 74h ; t
.rdata:0000000140019672 db 68h ; h
.rdata:0000000140019673 db 65h ; e
.rdata:0000000140019674 db 72h ; r
.rdata:0000000140019675 db 20h
...
--- snip ---
Using "dumpbin" tool from Visual Studio/Express/SDK on executable gives:
--- snip ---
Dump of file INSTALL.exe
PE signature found
File Type: EXECUTABLE IMAGE
FILE HEADER VALUES
8664 machine (x64)
5 number of sections
4EE124C5 time date stamp Thu Dec 08 21:57:41 2011
0 file pointer to symbol table
0 number of symbols
F0 size of optional header
23 characteristics
Relocations stripped
Executable
Application can handle large (>2GB) addresses
OPTIONAL HEADER VALUES
20B magic # (PE32+)
8.00 linker version
17800 size of code
D800 size of initialized data
0 size of uninitialized data
CCA0 entry point (000000014000CCA0)
1000 base of code
140000000 image base (0000000140000000 to 0000000140028FFF)
1000 section alignment
200 file alignment
4.00 operating system version
0.00 image version
5.02 subsystem version
0 Win32 version
29000 size of image
400 size of headers
303B3 checksum
2 subsystem (Windows GUI)
8000 DLL characteristics
Terminal Server Aware
100000 size of stack reserve
1000 size of stack commit
100000 size of heap reserve
1000 size of heap commit
0 loader flags
10 number of directories
0 [ 0] RVA [size] of Export Directory
1D7D8 [ 64] RVA [size] of Import Directory
26000 [ 23F8] RVA [size] of Resource Directory
24000 [ 10F8] RVA [size] of Exception Directory
22400 [ 1780] RVA [size] of Certificates Directory
0 [ 0] RVA [size] of Base Relocation Directory
0 [ 0] RVA [size] of Debug Directory
0 [ 0] RVA [size] of Architecture Directory
0 [ 0] RVA [size] of Global Pointer Directory
0 [ 0] RVA [size] of Thread Storage Directory
0 [ 0] RVA [size] of Load Configuration Directory
0 [ 0] RVA [size] of Bound Import Directory
19000 [ 5E8] RVA [size] of Import Address Table Directory
0 [ 0] RVA [size] of Delay Import Directory
0 [ 0] RVA [size] of COM Descriptor Directory
0 [ 0] RVA [size] of Reserved Directory
--- snip ---
Section headers:
--- snip ---
SECTION HEADER #1
.text name
176BE virtual size
1000 virtual address (0000000140001000 to 00000001400186BD)
17800 size of raw data
400 file pointer to raw data (00000400 to 00017BFF)
0 file pointer to relocation table
0 file pointer to line numbers
0 number of relocations
0 number of line numbers
60000020 flags
Code
Execute Read
SECTION HEADER #2
.rdata name
5B1C virtual size
19000 virtual address (0000000140019000 to 000000014001EB1B)
5C00 size of raw data
17C00 file pointer to raw data (00017C00 to 0001D7FF)
0 file pointer to relocation table
0 file pointer to line numbers
0 number of relocations
0 number of line numbers
40000040 flags
Initialized Data
Read Only
Section contains the following imports:
KERNEL32.dll
1400190D8 Import Address Table
14001D918 Import Name Table
0 time date stamp
0 Index of first forwarder reference
...
SECTION HEADER #3
.data name
4478 virtual size
1F000 virtual address (000000014001F000 to 0000000140023477)
1600 size of raw data
1D800 file pointer to raw data (0001D800 to 0001EDFF)
0 file pointer to relocation table
0 file pointer to line numbers
0 number of relocations
0 number of line numbers
C0000040 flags
Initialized Data
Read Write
...
SECTION HEADER #4
.pdata name
10F8 virtual size
24000 virtual address (0000000140024000 to 00000001400250F7)
1200 size of raw data
1EE00 file pointer to raw data (0001EE00 to 0001FFFF)
0 file pointer to relocation table
0 file pointer to line numbers
0 number of relocations
0 number of line numbers
40000040 flags
Initialized Data
Read Only
...
SECTION HEADER #5
.rsrc name
23F8 virtual size
26000 virtual address (0000000140026000 to 00000001400283F7)
2400 size of raw data
20000 file pointer to raw data (00020000 to 000223FF)
0 file pointer to relocation table
0 file pointer to line numbers
0 number of relocations
0 number of line numbers
40000040 flags
Initialized Data
Read Only
--- snip ---
The image load base of 0x0000000140000000 (>4 GiB address space) is probably to
catch such 32 vs. 64 bits porting errors.
When pointers are stored as 32 bits they would truncate hence triggering page
fault as seen here.
I've looked into the Total Commander forum
(http://www.ghisler.ch/board/index.php?language=english) but didn't find any
bug reports about installer crashing on Win64 so I assume this installer
somehow runs despite the bug.
Would be nice if someone with Win64 could verify this.
Maybe the loader does something different on Win64?
Even if the bug is invalid it's probably good to have one bug to collect such
misbehaving apps. I suspect there are more apps out there.
Regards
--
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=21395
Summary: Total Commander: When selecting a file by pressing
space, the total size of the selected files is updated
late
Product: Wine
Version: 1.1.36
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alexandru.balut(a)gmail.com
When using the 'space' key to select files, the total size of the selected
files which appears below the list (see attachment) is not updated immediately.
I need to do something for it to be updated, for example to press 'down'.
(This does not happen when selecting files with right-click, in this case the
total size is updated instantaneously.)
--
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.
https://bugs.winehq.org/show_bug.cgi?id=44750
Bug ID: 44750
Summary: wine: Unimplemented function
api-ms-win-core-path-l1-1-0.dll.PathCchCombineEx
Product: Wine
Version: 3.2
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: api-ms-win-*
Assignee: wine-bugs(a)winehq.org
Reporter: arny91(a)yahoo.it
Distribution: ---
Created attachment 60761
--> https://bugs.winehq.org/attachment.cgi?id=60761
Backtrace
Hi, this software
https://repository.ilpuntotecnicoeadsl.com/index.php?dir=mavelot/Firmware/T…
doesn't run on wine. The error is in the subject, backtrace is attached.
--
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=27578
Summary: Cygwin's wget.exe can't download files
Product: Wine
Version: 1.3.22
Platform: x86
URL: http://cygwin.com/setup.exe
OS/Version: Linux
Status: NEW
Keywords: download, patch, source
Severity: minor
Priority: P2
Component: ntdll
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Install cygwin, add wget package. Then run:
$ wine wget.exe http://www.cygwin.com/setup.exe
Resolving www.cygwin.com (www.cygwin.com)... 209.132.180.131
Connecting to www.cygwin.com (www.cygwin.com)|209.132.180.131|:80... connected.
HTTP request sent, awaiting response... 200 OK
fixme:ntdll:NtQueryVolumeInformationFile 0x160: attribute info not supported
fixme:ntdll:server_ioctl_file Unsupported ioctl 900a8 (device=9 access=0
func=2a method=0)
Length: 562195 (549K) [application/octet-stream]
setup.exe: Input/Output error
Cannot write to `setup.exe' (Input/Output error).
Faking success for attribute info allows it to succeed:
diff --git a/dlls/ntdll/file.c b/dlls/ntdll/file.c
index 4d49956..697793e 100644
--- a/dlls/ntdll/file.c
+++ b/dlls/ntdll/file.c
@@ -2539,7 +2539,8 @@ NTSTATUS WINAPI NtQueryVolumeInformationFile( HANDLE
handle, PIO_STATUS_BLOCK io
}
break;
case FileFsAttributeInformation:
- FIXME( "%p: attribute info not supported\n", handle );
+ FIXME( "%p: attribute info not supported, faking success\n", handle );
+ io->u.Status = STATUS_SUCCESS;
break;
case FileFsControlInformation:
FIXME( "%p: control info not supported\n", handle );
--
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=33279
Bug #: 33279
Summary: Cygwin wants
ntdll.dll.RtlConvertToAutoInheritSecurityObject
Product: Wine
Version: 1.3.22
Platform: x86
URL: http://cygwin.com/setup.exe
OS/Version: Linux
Status: NEW
Keywords: download, source
Severity: minor
Priority: P2
Component: ntdll
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Classification: Unclassified
Noticed while running wget.exe (bug 27578).
--
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.
https://bugs.winehq.org/show_bug.cgi?id=44999
Bug ID: 44999
Summary: Python 3.6.5 crashes due to unimplemented function
api-ms-win-core-path-l1-1-0.dll.PathCchCanonicalizeEx.
Product: Wine
Version: 3.6
Hardware: x86
URL: https://www.python.org/ftp/python/3.6.5/win32/
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: api-ms-win-*
Assignee: wine-bugs(a)winehq.org
Reporter: sagawa.aki+winebugs(a)gmail.com
Distribution: Ubuntu
As described in summary, Python 3.6.5 crashes due to unimplemented function
api-ms-win-core-path-l1-1-0.dll.PathCchCanonicalizeEx.
How to reproduce:
1. wget https://www.python.org/ftp/python/3.6.5/win32/core.msi \
https://www.python.org/ftp/python/3.6.5/win32/exe.msi \
https://www.python.org/ftp/python/3.6.5/win32/lib.msi
2. wine msiexec /i core.msi /qb TARGETDIR=C:/python3.6.5
3. wine msiexec /i exe.msi /qb TARGETDIR=C:/python3.6.5
4. wine msiexec /i lib.msi /qb TARGETDIR=C:/python3.6.5
5. cd $WINEPREFIX/drive_c/python3.6.5
6. wine python.exe
Expected behavior:
It starts without crashes and shows prompt (>>>) as it's in interactive mode.
Actual behavior:
It crashes with the following message:
0009:fixme:msvcrt:_configure_wide_argv (1) stub
0009:fixme:msvcrt:_initialize_wide_environment stub
wine: Call from 0x7b43cddc to unimplemented function
api-ms-win-core-path-l1-1-0.dll.PathCchCanonicalizeEx, aborting
wine: Unimplemented function
api-ms-win-core-path-l1-1-0.dll.PathCchCanonicalizeEx called at address
0x410073:0x7b43cddc (thread 0009), starting debugger...
Note:
Python introduced PathCchCanonicalizeEx by following commit:
https://github.com/python/cpython/commit/48e8c82fc63d2ddcddce8aa637a892839b…
I'm not sure if 0x7b43cddc actually points canonicalize function which was
added by the commit. But, it's very suspicious.
--
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=16198
Summary: wine uses obsolete version of gecko. (Affects Google
Sketchup, Picasa, and zillions of other apps.)
Product: Wine
Version: 1.1.9
Platform: Other
OS/Version: other
Status: NEW
Severity: normal
Priority: P2
Component: mshtml
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Wine has not updated its version of gecko in
a long time, despite the many security updates
for gecko that are available. Also, I think
Wine is using a version of gecko that has been
end-of-lifed:
http://www.pcworld.com/businesscenter/article/153015/mozilla_plans_for_fire…
We need to move to a newer version of gecko and
set up procedures for periodically updating
it as security fixes for it are released.
--
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=31593
Bug #: 31593
Summary: Regression from wine 1.5.4; same bug as 24679
Product: Wine
Version: unspecified
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: opengl
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: scruffidog(a)gmail.com
Classification: Unclassified
Created attachment 41546
--> http://bugs.winehq.org/attachment.cgi?id=41546
running under winedbg and running the export to jpeg option
This Sketchup bug seem to have been broken after 1.5.4 which was the last
sucessful time I used this feature. The problem summarize is any 2D
export/printing results in a solid black blob in the file.
The versions of the various components are as follows:
Sketchup M3/M4
nvidia drivers 304.32-304.43
xorg 1.12.3-1.12.4
mesa 8.0.4
wine 1.5.12
--
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=34941
Bug #: 34941
Summary: Ruby interpreter hangs with OS-level thread
concurrency error
Product: Wine
Version: 1.6.1
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntdll
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jsnydr(a)gmail.com
Classification: Unclassified
I just created a new 'version' entity for ruby in the appDB for ruby version
1.9.3 to report that it doesn't run. The recommended installer from
http://rubyinstaller.org runs to completion and the installed 'ruby.exe' will
report its version with `wine ruby -v`. But, if you try to get ruby to do
anything (like install gems or run 'irb'), it becomes unresponsive such that it
must be killed externally and begins generating the same error message every
minute: 'err:ntdll:RtlpWaitForCriticalSection section 0x113848 "?" wait timed
out in thread 0043, blocked by 0000, retrying (60 sec)'
--
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=35870
Bug ID: 35870
Summary: SketchUp Make 2014: Inactive main window.
Product: Wine
Version: 1.7.15
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: u.schutz(a)bluewin.ch
Created attachment 47888
--> http://bugs.winehq.org/attachment.cgi?id=47888
Output from the console, and aditional hardware information.
The SketchUp Make 2014 main program window is not reacting to mouse or keyboard
input, and is not redrawn. Menus and icons get destroyed when another window is
placed above the SketchUp Make window. The SketchUp Make window seems
completely inactive after startup.
The xterm used to start wine is repeating this output line:
err:ntdll:RtlpWaitForCriticalSection section 0x158cc0 "?" wait timed out in
thread 0023, blocked by 0000, retrying (60 sec)
Download SketchUp Make 2014, educational use, for Windows, from here:
http://www.sketchup.com/download
sha1sum SketchUpMake-en.exe
b7c94c3ccc504d58226987992b8a785dd309777e SketchUpMake-en.exe
--
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=35832
Bug ID: 35832
Summary: SketchUp 2014 hangs after choosing a template
Product: Wine
Version: 1.7.14
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: maiktapwagner(a)aol.com
Created attachment 47844
--> http://bugs.winehq.org/attachment.cgi?id=47844
SketchUp 2014 Output
Hello everyone,
I having problems getting SketchUp 2014 to work. I submitted an AppDB entry for
the 2014 version and got the application from the following URL:
http://www.chip.de/downloads/SketchUp_19028747.html
I am assuming that this is a .Net 4.0 related bug as the installation of .net
4.0 went through fairly quickly. The problem that I am facing is that after
choosing a template in the main menu the application hangs. (Slackware 14).
I have attached my output from the Konsole befere I had to kill the
application.
--
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.
https://bugs.winehq.org/show_bug.cgi?id=38023
Bug ID: 38023
Summary: SketchUp 2014 freezes on start due to Ruby 2.0
Product: Wine
Version: 1.6.2
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: aerilius(a)googlemail.com
Distribution: ---
SketchUp 2014 and 2015 come with an upgraded Ruby (2.0 instead of 1.8.7). At
start, after the Welcome dialog, the main application dialog opens and freezes.
When starting SketchUp with /DisableRubyAPI parameter, the Ruby interpreter is
not loaded and SketchUp starts normally.
err:ntdll:RtlpWaitForCriticalSection section 0x15a7f0 "?" wait timed out in
thread 0009, blocked by 0000, retrying (60 sec)
The same kind of error could be invoked in older SketchUp versions with Ruby
1.8.7 or in stand-alone Ruby when using some system calls in the Ruby console
like (with backticks, Ruby syntax):
`dir`
Using stand-alone Ruby 2.0.0 from http://rubyinstaller.org/downloads causes the
same ntdll error.
ruby-2.0.0-p598-i386-mingw32/bin$ wine ./ruby.exe "puts 'success'"
fixme:heap:HeapSetInformation (nil) 1 (nil) 0
fixme:heap:HeapSetInformation (nil) 1 (nil) 0
fixme:service:scmdatabase_autostart_services Auto-start service L"gupdate"
failed to start: 2
err:ntdll:RtlpWaitForCriticalSection section 0x113b28 "?" wait timed out in
thread 0009, blocked by 0000, retrying (60 sec)
--
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=18739
Summary: Sketchup Crashes after startup
Product: Wine
Version: 1.1.22
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: danny(a)orionrobots.co.uk
Created an attachment (id=21488)
--> (http://bugs.winehq.org/attachment.cgi?id=21488)
Error Log
THis is after the templates dialog. A brocken HTML help page seems to be
showing - app dies before that can be dismissed.
I am not usinh winetricks.
Wine install from wineHQ deb on Ubuntu Jaunty.
Sketchup 7 installed with HW_OK set to 1.
Nvidia graphics card with Nvidia drivers.
The crash is about a second in, but I am unable to use any controls before
then. The google "bug splat" shows.
Gecko debug symbols have been installed.
--
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=32059
Bug #: 32059
Summary: Broken Google Sketchup, Suspected Graphics related due
to Bunt update
Product: Wine
Version: 1.4
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: david.vanderzwart(a)gmail.com
Classification: Unclassified
Hi fixerers,
Auto updated Bunt a few days (October 21-23ish 2012) ago which broke Google
Sketch-up.
Heavy user of SU, after a recent update my screen dropped to a low resolution.
A simple reboot brought it back to normal.
But SU now crashes.
Running Compiz standard desktop, SU has worked for over a year on the system.
Diagnostics:
Reboot brought back normal resolution
Sysinfo reports
Bunt 12.04 32 bit
Benq screen identified, at 1920 x 1200
Nvidia 7600 GS identified
Interestingly when launching SU after the update the program loaded. But the
screen was black. I could see the mouse, which was black with a fine white
outline. When mousing over my standard Bunt menu the mouse went normal and I
was able to shut down the system.
I did this several times, but nothing changed.
I then did the GL regedit fix changing to setting HW_OK 1
This improved slightly, where SU just crashed, so no black screen
Also I edited the snappy instructor
I was impressed and boggled by the crash, so thought I would see if anyone may
know a good way to remedy the fault.
I appreciate I have not offered enough information, please let me know what
information is needed to begin diagnostics.
Regards
Plus46
--
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=12263
Summary: Sketchup Cannot initialize OpenGL - ChoosePixelFormat
fails
Product: Wine
Version: 0.9.58.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: opengl
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gioloi72(a)gmail.com
Created an attachment (id=11713)
--> (http://bugs.winehq.org/attachment.cgi?id=11713)
the console log of wine 0.9.58 launching sketchup
In Ubuntu 7.10 Gutsy I have updated wine from 0.9.46 (comes with gutsy) to
0.9.58.
In 0.9.46 I was able to run Google Sketchup 6 stable enough to work (only the
toolbars and menus don't refresh correctly).
After the update to 0.9.58 Sketchup no longer runs and I don't get any error
message.
Then in the registry key
HKEY_CURRENT_USER\Software\Google\SketchUp6\GLConfig\Display\HW_OK
changing value from 1 to 0 (It was set to 1 because Sketchup worked with
0.9.46)
cause Sketchup to show a popup window with error "Can't initialize OpenGL:
ChoosePixelFormat fails"
After uninstalling 0.9.58 and reinstalling 0.9.46 Sketchup works again...
Excuse my english
Attached console log
--
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=16511
Summary: Google Sketchup rejects some ruby scripts containing
CRLF
Product: Wine
Version: 1.1.10
Platform: Other
URL: http://sketchup.google.com
OS/Version: other
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Oddly, under Wine, the example ruby scripts from
http://sketchup.google.com/download/rubyscripts.html
are rejected by Sketchup unless you remove the CRs,
i.e. run them through dos2unix.
The one-liner "puts 'hello'" program is ok, though. The smallest
script I've created that exibits the problem is a hello, world
app that starts with a ten line comment. This script does not cause
the error when run in Sketchup on MS Windows.
I'll attach the script.
--
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=12136
Summary: Sketchup6: crashes on x86-64 right after startup
Product: Wine
Version: CVS/GIT
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: apersaud(a)lbl.gov
Created an attachment (id=11532)
--> (http://bugs.winehq.org/attachment.cgi?id=11532)
console output from crash
Installed openSUSE wine snapshot 0.9.57.20080320 on x86-64.
Moved .wine to .wineold.
Run "winecfg" to create new clean .wine directory.
Downloaded installer for Sketchup (version 6).
Run installer (worked without problems).
Run Sketchup, wants to install Gecko for html rendering, installs fine.
Some openGL problem(?) comes up, which seems to be fixed once I change the
registry:
HKEY_CURRENT_USER/SOFTWARE/GOOGLE/SKETCHUP6/GLCONFIG/DISPLAY/HW_OK to 0x1 (from
0x0)
If I then restart Sketchup the main window pops up, together with two small
windows (help and some setup window). In the main window the menu bar is
displayed correctly, but the drawing window shows garbage (just white with some
odd lines drawn on it, no coordinate system, etc. which is normally displayed).
The setup window has a "continue" button, once I press it the application shuts
down and a google bug reporting window comes up.
Bug reproduces every time I run Sketchup.
I attached the console output of "wine c:/.../sketchup.exe"
HTH
--
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=15749
Summary: Google Sketchup 6 initial units dialog, can't choose
units
Product: Wine
Version: 1.1.7
Platform: Other
URL: http://sketchup.com
OS/Version: other
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
When you first start Sketchup, it asks you what units to use.
Sadly, the pulldown list of units is blank, and you can't
click "OK" until you choose units.
Fortunately, you can dismiss that dialog by clicking the go-away X box in the
upper right.
--
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=14044
Summary: Google SketchUp fails to run
Product: Wine
Version: 1.0.0
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: brett.jr.alton(a)gmail.com
After installing Google SketchUp 6.4.112
(http://filehippo.com/download_google_sketchup/) Google SketchUp failed to run.
I've attached the CLI log.
--
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=11219
Summary: SketchUp crashes and cripples whole linux system
Product: Wine
Version: 0.9.53.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P1
Component: kernel32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: hotmejladress(a)hotmail.com
When trying to save in sketchup, the program crashes. After it crashes, wine
contionues to write very big .dmp files in the wine c:\windows\temp directory.
Theese files are in the order of 1-2 GB! It still autosaves so one can still
try to use sketchup, with occational crashes. But these big files add up,
suddenly u run out of harddrive, wine continues to write in the background
until the computer comes to a standstill. After resetting the computer with the
powerbutton, I had trouble even getting linux to start again, cause the disk
was so full. On the AppDB there is some guy who prevented theese crashes by
commenting out something in the kernel.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=18802
Summary: Google SketchUp on linux FC 10 crashes on 'save' with:
GetFileName95 Flags 0x00800000 not yet implemented
Product: Wine
Version: 1.1.15
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: sparks_330(a)yahoo.com
I searched WineHQ bugzilla and the bug is same as #4071, fixed way back in 2005
with version 0.9.3.
filing a new bug instead of re-opening, because it was way too long ago.
=========================================================
got wine 1.1.15 to run SketchUp on my linux laptop, Toshiba Protege R600 with
FC 10.
had to use env LIBGL_ALWAYS_SOFTWARE=1 to avoid SketchUp crashing upon start,
but I can use it now.
then when i click 'save' the application crashes.
when I turn on debug flags w/ "envenv WINEDEBUG=+channel1,+channel2", start
sketchup again, and click 'save' I see:
fixme:commdlg:GetFileName95 Flags 0x00800000 not yet implemented
X Error of failed request: GLXBadContextTag
Major opcode of failed request: 154 (GLX)
Minor opcode of failed request: 106 (X_GLXSelectBuffer)
Serial number of failed request: 632258
Current serial number in output stream: 632259
--
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=18222
Summary: Google Sketchup 7 Page Faults on Startup
Product: Wine
Version: 1.0.1
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: cov(a)vt.edu
Created an attachment (id=20728)
--> (http://bugs.winehq.org/attachment.cgi?id=20728)
Backtrace
The startup dialog comes and I can choose a template but when I click Start
Using Sketchup I get a page fault and the Google Bugsplat error reporter comes
up.
--
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=17642
Summary: Google Sketchup, Mint Felicia ( in fact Ubuntu 8.10)
Wine 1.1.13
Product: Wine
Version: 1.1.13
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: freerk(a)ostrain.nl
Created an attachment (id=19828)
--> (http://bugs.winehq.org/attachment.cgi?id=19828)
error output of Google Sketch
Installed Google Sketchup, went fine.
Starting the program it showed a correct border and upper menu.
In the midle it showed a crashed screen, and there was an error output wich I
attached
--
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=21083
Summary: SketchUp was unable to initialize OpenGL,
ChoosePixelFormat failed!
Product: Wine
Version: 1.1.35
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: opengl
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fester(a)rucls.net
I think Sketchup7.1 was last working under Wine at around 1.1.32 (Karmic).
Since then I've been getting "SketchUp was unable to initialize OpenGL ....
ChoosePixelFormat".
Now I've just tried 1.1.35 and get the same problem. I don't have access to
1.1.32 so I can't do a regression.
--
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=26729
Summary: Google Sketchup Layout crashes on main menu
(GdipGetPathGradientSurroundColorCount and
GdipSetPathGradientSurroundColorsWithCount stubs)
Product: Wine
Version: 1.3.17
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: gdiplus
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Hello,
now that TIFF encoder is in, the layout app crashes whenever main menu is about
to be displayed.
The reason are gdiplus GdipGetPathGradientSurroundColorCount and
GdipSetPathGradientSurroundColorsWithCount stubs.
Unfortunately this problem isn't really visible due to missing FIXME in
GdipGetPathGradientSurroundColorCount (+relay/+gdiplus will take ages until the
point due to excessive calls).
Fortunately using debugging tools and some nifty exception script that logs
only unmanaged/managed exceptions with backtraces and comes across the
following:
--- snip ---
...
0027:trace:seh:raise_exception code=e0434f4d flags=1 addr=0x7b83863f
ip=7b83863f tid=0027
0027:trace:seh:raise_exception info[0]=80004001
0027:trace:seh:raise_exception eax=7b825a75 ebx=7b88fff4 ecx=80004001
edx=0033d640 esi=0033d6b8 edi=e0434f4d
0027:trace:seh:raise_exception ebp=0033d680 esp=0033d61c cs=0073 ds=007b
es=007b fs=0033 gs=003b flags=00000207
(26.27): CLR exception - code e0434f4d (first chance)
OS Thread Id: 0x27 (0)
ESP EIP
0033d708 7b83863f [HelperMethodFrame: 0033d708]
0033d7ac 7ae6cf7e
System.Drawing.Drawing2D.PathGradientBrush._SetSurroundColors(System.Drawing.Color[])
0033d7d4 7ae434b5
System.Drawing.Drawing2D.PathGradientBrush.set_SurroundColors(System.Drawing.Color[])
0033d7d8 096e40de
Infragistics.Win.ShadowManager+Shadow.PaintRightShadow(System.Drawing.Graphics,
System.Drawing.Rectangle)
0033d878 096e3f44
Infragistics.Win.ShadowManager+Shadow.DrawShadows(System.Drawing.Graphics,
System.Drawing.Rectangle)
0033d88c 096e3c91
Infragistics.Win.ShadowManager+ShadowEx.InitializeLayeredWindow()
0033d890 096e3899 [InlinedCallFrame: 0033d890]
0033da1c 00000000 [InlinedCallFrame: 0033da1c]
0033e074 00000000 [NDirectMethodFrameGeneric: 0033e074]
System.Windows.Forms.UnsafeNativeMethods.IntCreateWindowEx(Int32,
System.String, System.String, Int32, Int32, Int32, Int32, Int32,
System.Runtime.InteropServices.HandleRef,
System.Runtime.InteropServices.HandleRef,
System.Runtime.InteropServices.HandleRef, System.Object)
0033e560 00000000 [InlinedCallFrame: 0033e560]
0033e908 00000000 [NDirectMethodFrameStandalone: 0033e908]
System.Windows.Forms.SafeNativeMethods.UpdateWindow(System.Runtime.InteropServices.HandleRef)
0033eb80 00000000 [InlinedCallFrame: 0033eb80]
0033ec48 00000000 [InlinedCallFrame: 0033ec48]
0033eefc 00000000 [NDirectMethodFrameStandalone: 0033eefc]
System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG ByRef)
0033f53c 00000000 [GCFrame: 0033f53c]
0027:trace:seh:call_vectored_handlers calling handler at 0x6e38f6c6
code=e0434f4d flags=1
0027:trace:seh:call_vectored_handlers handler at 0x6e38f6c6 returned 0
0027:trace:seh:call_stack_handlers calling handler at 0x79f9a3c8 code=e0434f4d
flags=1
0027:trace:seh:call_stack_handlers handler at 0x79f9a3c8 returned 1
0027:trace:seh:call_stack_handlers calling handler at 0x7a3197d4 code=e0434f4d
flags=1
0027:trace:seh:call_stack_handlers handler at 0x7a3197d4 returned 1
0027:trace:seh:call_stack_handlers calling handler at 0x79fcc4da code=e0434f4d
flags=1
0027:trace:seh:__regs_RtlUnwind code=c0000027 flags=2
0027:trace:seh:__regs_RtlUnwind calling handler at 0x7a2f08ac code=c0000027
flags=2
0027:trace:seh:__regs_RtlUnwind handler at 0x7a2f08ac returned 1
0027:trace:seh:__regs_RtlUnwind calling handler at 0x7bc775b1 code=c0000027
flags=2
0027:trace:seh:__regs_RtlUnwind handler at 0x7bc775b1 returned 1
0027:trace:seh:__regs_RtlUnwind calling handler at 0x79f9a3c8 code=c0000027
flags=2
0027:trace:seh:__regs_RtlUnwind handler at 0x79f9a3c8 returned 1
0027:trace:seh:__regs_RtlUnwind calling handler at 0x7a3197d4 code=c0000027
flags=2
0027:trace:seh:__regs_RtlUnwind handler at 0x7a3197d4 returned 1
0027:trace:loaddll:load_native_dll Loaded
L"C:\\windows\\Microsoft.NET\\Framework\\v2.0.50727\\diasymreader.dll" at
0x5e380000: native
0027:fixme:exec:SHELL_execute flags ignored: 0x00000100
0027:trace:process:create_process_impl app (null) cmdline L"C:\\Program
Files\\Google\\Google SketchUp 8\\LayOut\\BsSndRpt.exe /i
\"C:\\users\\focht\\Temp\\tmp528e.ini\""
--- snip ---
After fleshing out the first stub, the second one appears:
--- snip ---
0037:fixme:gdiplus:GdipSetPathGradientSurroundColorsWithCount not implemented
0037:trace:seh:raise_exception code=e0434f4d flags=1 addr=0x7b83863f
ip=7b83863f tid=0037
0037:trace:seh:raise_exception info[0]=80004001
0037:trace:seh:raise_exception eax=7b825a75 ebx=7b88fff4 ecx=80004001
edx=0033d640 esi=0033d6b8 edi=e0434f4d
0037:trace:seh:raise_exception ebp=0033d680 esp=0033d61c cs=0073 ds=007b
es=007b fs=0033 gs=003b flags=00000207
(36.37): CLR exception - code e0434f4d (first chance)
OS Thread Id: 0x37 (0)
ESP EIP
0033d708 7b83863f [HelperMethodFrame: 0033d708]
0033d7ac 7ae6cf9d
System.Drawing.Drawing2D.PathGradientBrush._SetSurroundColors(System.Drawing.Color[])
0033d7d4 7ae434b5
System.Drawing.Drawing2D.PathGradientBrush.set_SurroundColors(System.Drawing.Color[])
...
--- snip ---
I quickly fleshed/hacked out both stubs and it helped to display the main menu.
The workspace context menu crash (right click) seems to be a different bug.
Regards
--
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=22663
Summary: Render "sketchy lines" problems.
Product: Wine
Version: 1.1.44
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: tvcasualty(a)gmail.com
When styles are selected that use “sketchy lines” the lines do not render in
the workspace. Shadows will show up, but the actual drawing lines will not
render.
System:
Intel Core 2 Duo E8400 Wolfdale 3.0GHz LGA 775 65W Dual-Core Processor
PNY GeForce 9800 GTX+ 512MB 256-bit GDDR3 PCI Express 2.0 x16 Video Card
EVGA 123-YW-E175-A1 LGA 775 NVIDIA nForce 750i SLI FTW ATX Intel Motherboard
and 8GB of RAM
--
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=22229
Summary: Sketchup fails to print previews, show back area,
template and part previews also
Product: Wine
Version: 1.1.41
Platform: x86-64
URL: http://appdb.winehq.org/objectManager.php?sClass=versi
on&iId=14562
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: erik(a)foamcasualty.com
Since Ubuntu 9.10 Sketchup (6.x and 7.x) has failed to print preview. Printing
also is broken as the preview is exactly what gets printed out. Actual sketch
is the only thing distorted, a black area is shown inside of the page when
called.
Also noticed several other issues that may be related:
-Previews of templates, parts (entire files), and components display similar
black boxes.
-Using any type of "sketchy edge" template does not display edge lines.
System Specs:
Intel Core 2 Duo E8400 Wolfdale 3.0GHz LGA 775 65W Dual-Core Processor
PNY GeForce 9800 GTX+ 512MB 256-bit GDDR3 PCI Express 2.0 x16 Video Card
EVGA 123-YW-E175-A1 LGA 775 NVIDIA nForce 750i SLI FTW ATX Intel Motherboard
and 8GB of RAM
Latest Nvidia Drivers installed. (178 I believe)
--
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=16488
Summary: "Tools / Google Earth / Get Current View" crashes Google
Sketchup 7
Product: Wine
Version: 1.1.10
Platform: Other
OS/Version: other
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Following the instructions in
http://sketchup.google.com/support/bin/answer.py?hl=en&answer=36241
causes Sketchup to crash or hang when you do Tools /
Google Earth / Get Current View.
You can try to cancel (sketchup has a message box with a cancel button),
but if you do, sketchup hangs.
Under the hood, sketchup is using a COM server loaded from earthps.dll
to talk to Earth, and something is going awry with it...
--
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=20795
Summary: Graphical display garbled ATI mobility card
Product: Wine
Version: 1.1.33
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Jay.n.lizz.98(a)gmail.com
Created an attachment (id=24899)
--> (http://bugs.winehq.org/attachment.cgi?id=24899)
Garbled graphics
Menus are fine, and usable, but sketch window is completely garbled, and
unusable.
Using wine-1.1.33
uname -a
Linux laptop.daddy.net 2.6.26.8.tex3 #1 SMP Mon Jan 12 04:33:38 CST 2009 i686
mobile AMD Athlon(tm) XP2400+ GNU/Linux
lspci
00:00.0 Host bridge: ATI Technologies Inc AGP Bridge [IGP 320M] (rev 13)
00:01.0 PCI bridge: ATI Technologies Inc PCI Bridge [IGP 320M] (rev 01)
00:02.0 USB Controller: ALi Corporation USB 1.1 Controller (rev 03)
00:06.0 Multimedia audio controller: ALi Corporation M5451 PCI AC-Link
Controller Audio Device (rev 02)
00:07.0 ISA bridge: ALi Corporation M1533/M1535/M1543 PCI to ISA Bridge
[Aladdin IV/V/V+]
00:08.0 Modem: ALi Corporation M5457 AC'97 Modem Controller
00:09.0 Network controller: Broadcom Corporation BCM4306 802.11b/g Wireless LAN
Controller (rev 02)
00:0a.0 CardBus bridge: O2 Micro, Inc. OZ601/6912/711E0 CardBus/SmartCardBus
Controller
00:0c.0 FireWire (IEEE 1394): Texas Instruments TSB43AB21 IEEE-1394a-2000
Controller (PHY/Link)
00:10.0 IDE interface: ALi Corporation M5229 IDE (rev c4)
00:11.0 Bridge: ALi Corporation M7101 Power Management Controller [PMU]
00:12.0 Ethernet controller: National Semiconductor Corporation DP83815
(MacPhyter) Ethernet Controller
01:05.0 VGA compatible controller: ATI Technologies Inc Radeon Mobility U1
--
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=18107
Summary: GoogleSkechtUp: Crashes after choosing a template
Product: Wine
Version: unspecified
Platform: Other
URL: http://sketchup.google.com/download/gsuwenthankyou.html
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jassen126(a)gmail.Com
Created an attachment (id=20542)
--> (http://bugs.winehq.org/attachment.cgi?id=20542)
Console logs from the crash
GoogleSkechtUp crashes when trying to start using it, after you choose a
template.
--
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=22247
Summary: Sketchup cannot export collada or google earth files
Product: Wine
Version: 1.1.41
Platform: x86-64
URL: http://www.google.com/support/forum/p/sketchup/thread?
fid=3e8000bfa25c5d1c00048344f937e93d&hl=en
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: yorik.vanhavre(a)gmail.com
See thread about this bug on google sketchup forum:
http://www.google.com/support/forum/p/sketchup/thread?fid=3e8000bfa25c5d1c0…
Sketchup 7.1 running on wine cannot export collada (.dae) or google earth
(.kmz) files. To reproduce, simply open sketchup, select file -> export -> 3d
model and choose either collada or google earth format. Sketchup shows a dialog
with an export progress bar being filled up, but no "successfully exported"
message, as it does on windows. And indeed, no file gets created.
On the terminal, appears: Warning: No IOPlugin Set! Neither DOM_INCLUDE_LIBXML
or DOM_INCLUDE_TINYXML is defined.
That message error seems to be coming from the collada component of sketchup (
see
https://collada.org/public_forum/viewtopic.php?p=3216&sid=2a576c3f28da988cf…
). google earth .kmz files are actually zip files containing collada files and
their textures, so it makes sense that both file formats have the same problem.
I tried to save to all kinds of different paths to exclude the possibility of
the file not be created for some filesystem or bad path name reason.
I'm not sure there is much to do without digging inside complex collada
internals, but I'm posting anyway so it is registered. I'll try to have a
better look at that collada thread when I have time, to see if I find more
clues.
I'm on debian squeeze 64bits, wine 1.1.41
--
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=16196
Summary: Back and Forward buttons in Google Sketchup's 3D
Warehouse do nothing
Product: Wine
Version: 1.1.9
Platform: Other
URL: http://sketchup.google.com
OS/Version: other
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: shdocvw
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Do File / 3D Warehouse / Get Models. A web browser will pop up.
You can click on links in it, and the 'Home' button in the upper
right of the frame works, but the 'Back' and 'Forward' buttons
in the upper right of the frame are ignored.
--
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=16593
Summary: Sketchup 7 installs and loads, but workspace black
Product: Wine
Version: 1.1.10
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: steve.shaughnessy(a)talk21.com
CC: steve.shaughnessy(a)talk21.com
Created an attachment (id=18122)
--> (http://bugs.winehq.org/attachment.cgi?id=18122)
Trace of terminal executing SketchUp 7
SketchUp 7 installs without problems - except OpenGl issues etc previously
documented.
SketchUp loads, all menu and toolbars intact.
Workscreen black.
Seems to "think" it is drawing, but nothing shows.
I've seen one other ref to this problem (via Google) and it says that he fixed
by setting no_dri off on video, but I don't seem to have that setting. Could be
ATI graphics related?
Print preview causes a crash.
Various error messages in terminal - trace attached.
If I've messed up go easy on me - new to Linux, new to Ubuntu, new to Wine.
# MBoard: Gigabyte GA-MA78GM-S2H 780G Socket AM2+
# Processor: AMD Phenom X3 Triple Core 8450 2.1GHz
# Graphics: ATI Radeon HD 3200
# 2Gb Memory
# OS: Ubuntu 8.10 Intrepid Ibex
--
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=11954
Summary: Google Sketchup, Google bug splat never finish sending
report.
Product: Wine
Version: 0.9.57.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: hotmejladress(a)hotmail.com
Created an attachment (id=11279)
--> (http://bugs.winehq.org/attachment.cgi?id=11279)
output from wine, gooogle bug squash
When Google sketchup crashes, which it does frequently, google bug splat
starts. If you describe what happens and send a report, bug splat starts
transmitting something but will never finish. The little 'sending error
report'-window can not be shut down. You have to use the gnome-system monitor
to shut down that process.
I think this bug should be prioritised so that the google developers see the
Sketchup crashes, and can go on to fix the bugs.
I attached the terminal output.
--
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=13377
Summary: SketchUp crashing on first click in drawing window
Product: Wine
Version: 1.0-rc2
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: panagiotis(a)gmail.com
Created an attachment (id=13280)
--> (http://bugs.winehq.org/attachment.cgi?id=13280)
Back trace of SketchUp crashing.
After installing SketchUp, I clicked in the main window which caused it to
crash immediately.
--
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=16558
Summary: Google Sketchup 7 "Tools / Interact" cursor wrapped
Product: Wine
Version: 1.1.10
Platform: Other
URL: http://sketchup.google.com
OS/Version: other
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
"Tools / Interact" puts up a different hand cursor,
and wine displays it poorly; it's as is part of the cursor
is sliced off and displayed on the wrong side.
--
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=15569
Summary: SELinux denied access requested by wine-preloader
Product: Wine
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wilsonhaven(a)gmail.com
Created an attachment (id=16570)
--> (http://bugs.winehq.org/attachment.cgi?id=16570)
SelinuxTroubleshootd Log Entry
SELinux denied access requested by wine-preloader. It is not expected that this
access is required by wine-preloader and this access may signal an intrusion
attempt.
--
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.
https://bugs.winehq.org/show_bug.cgi?id=37270
Bug ID: 37270
Summary: Program error when starting Sketchup Make
Product: Wine-gecko
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-gecko-unknown
Assignee: jacek(a)codeweavers.com
Reporter: gterian(a)gmail.com
Created attachment 49566
--> https://bugs.winehq.org/attachment.cgi?id=49566
backtrace file resulting from the last crash.
wine crashed when opening Sketchup. sketchup goes as far as allowing you to
select a template, then shows the desktop as the background and will not go any
further, you have to force quit the application.
The linux Program Error message box opens to indicate "the program
(unidentified) has encountered a serious problrm...." at the same time as
Sketchup is opening.
--
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=19844
Summary: Google Sketchup crashes on
Product: Wine
Version: 1.0.1
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: davideps(a)umich.edu
Start Google Sketchup 7
File --> Import --> select image and "New Matched Photo" option
Program crashes immediately. I have tried this with several different images
and image formats. The photo perspective matching and photo texturing tools are
a major attraction to Sketchup--so this bug unfortunately strips the package of
considerable functionality.
-david
--
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=16103
Summary: Google Sketchup 7 crashes after downloading model
Product: Wine
Version: 1.1.8
Platform: Other
URL: http://sketchup.google.com
OS/Version: other
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Google Sketchup 7 runs fairly well, though I had to
set HW_OK=1 in the registry as described in bug 14045
and uncheck 'show on startup' in the initial dialog
to get it to work.
It downloads models ok, but once they're downloaded,
one of several unpleasant things may happen:
a) it might complain "bad file" (can't remember the exact message),
b) it might crash with the following backtrace:
=>1 0x032b17dd in xpcom_core (+0x17dd) (0x032b17e1)
c) it might crash while saving, with the following backtrace:
=>1 0x78aaa180 (0x0032dcd8)
2 0x7eb8966a call_window_proc+0x6a(hwnd=?, msg=?, wp=0, lp=0,
result=0x32dd50, arg=0x78aaa180) [dlls/user32/winproc.c:458] in user32
(0x0032dd18)
It doesn't always crash, so if you save after every download and are
patient, you can get something done.
--
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=16869
Summary: Sketchup 7 crashes when bringing up 3d Warehouse
Product: Wine
Version: 1.1.12
Platform: Other
URL: http://sketchup.google.com
OS/Version: other
Status: NEW
Keywords: download, regression
Severity: normal
Priority: P2
Component: shdocvw
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
This seems to be a regression caused by the new Gecko.
To reproduce, just start the app and pick File / 3d Warehouse / Import. Bammo!
--
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=17209
Summary: Sketchup 7 crashes on saving, but still saves.
Product: Wine
Version: 1.1.14
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jean-louis.bourdon(a)laposte.net
Model saved, but app crashes
--
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=18731
Summary: Google SketchUp: Crashes when ran in 1.1.22
Product: Wine
Version: 1.1.22
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: drkguy.spam(a)gmail.com
Created an attachment (id=21479)
--> (http://bugs.winehq.org/attachment.cgi?id=21479)
Log from wine execution
When i updated to 1.1.22, SketchUp stops working, even after a clean .wine
wipeout,as shown in the log, when i downgrade to 1.1.21, it starts working
again.
--
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=17605
Summary: Crashes on file save
Product: Wine
Version: 1.1.16
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: zsolt(a)softmonsters.com
Sketchup 7 installs and so far just runs fine but on saving a file it crashes
*before* any file was written
My OS is Gentoo-Linux. Xorg is newest xorg-server-1.6.0 with
xf86-video-intel-2.6.1 UXA and DRI2
But the crash happens also without DRI. Tested with all wine-versions beginning
from 1.1.12.
With Sketchup 6 it's the same
--
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=27880
Summary: moving tool windows: mouse button state not correct?
Product: Wine
Version: 1.3.24
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: aerilius(a)googlemail.com
Created an attachment (id=35670)
--> (http://bugs.winehq.org/attachment.cgi?id=35670)
steps to reproduce, moving tool window in SketchUp or in another application
Google SketchUp has some tool windows (windows without GTK title bar, but with
Windows title bar). After moving a tool window and releasing the left mouse
button, the tool window is placed correctly and stops moving. But when you
hover again some part of any of SketchUp's tool windows, SketchUp's previously
active tool window sticks to the cursor and moves (which is very annoying).
That bug seems partly not SketchUp-specific, but caused by the tool windows'
drag behavior: When you move a tool window of another application, then hover
over one of SketchUp, the previously active SketchUp tool window sticks to the
cursor (see attached image).
It appears that SketchUp recognizes the left mouse button still as "pressed"
although it isn't.
--
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=24679
Summary: SketchUp cannot produce correct png/jpg/bmp files
Product: Wine
Version: 1.3.3
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: aerilius(a)googlemail.com
When you click in SketchUp in the menu to file - export 2d graphic, it does not
export valid graphics. The resulting images have the correct dimensions, but
they are either completely transparent (png, tif) or black (jpg, bmp).
For example a png file looks like that (cat test.png):
�PNG�k\ � �� �5� p �� �C � IEND�B`�
As far as I can see, it has a header and 5 chunks, that means it contains pixel
data (the bmp image has 1.5MB), but it shouldn't be empty.
The png export problem of the Mozart program
(http://bugs.winehq.org/show_bug.cgi?id=20694) seemed first to be similar, but
I tried to enable native GDIplus and it does not help.
In a SketchUp forum I once read about an export problem which was solved by
disabling hardware acceleration, but that is not possible in Wine because
SketchUp does not run without hardware acceleration.
--
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=16700
Summary: 'fast feedback' doesn't work in Google Sketchup 7
Product: Wine
Version: 1.1.11
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ethana2(a)gmail.com
Google Sketchup has a 'fast feedback' option; where a change you make to a
scene is rendered immediately upon making it, without moving the camera. This
option does not work properly on my GeForce 8400M GS in WINE 1.1.11.
--
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=23096
Summary: White box around cursor in Google SketchUp Pro 7
Product: Wine
Version: 1.2-rc2
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: sbagnak(a)yandex.ru
A white box around black cursor is present on the working area of SketchUp
window. But when I tried to take screenshot, I got gnome cursor without white
box instead of black cursor with white box around of them.
Surround:
Ubuntu 10.04 x86_64 with kernel 2.6.32-22.36, wine 1.2-rc2-0ubunu1~lucidppa1
from winehq repository, Google SketchUp Pro 7, AMD Radeon HD 5650 driver -
8.723.1-100408a-098580C-ATI.
--
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=25221
Summary: SketchUp 7 prints black rectangle and export the same
into JPG
Product: Wine
Version: 1.3.6
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: evgeni_atel(a)mail.ru
Print and 2d export functions do not work.
--
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=18547
Summary: Slingplayer 2.0 unhandled exception
Product: Wine
Version: unspecified
Platform: PC
URL: http://download.slingmedia.com/player/pc/SP2/SlingPlay
er-2.0.3508-Setup-EMEA.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: urlmon
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
Created an attachment (id=21211)
--> (http://bugs.winehq.org/attachment.cgi?id=21211)
wine-1.1.21-316-g8f33420 console output
When Slingplayer 2.0 starts it asks for a password to connect to the Slingbox.
Unfortunately it won't go any further as a page fault and unhandled exception
occurs, and the app hangs and has to be killed, when attempting to enter
keystrokes or mouse clicks.
Problem doesn't exist in 1.1.21 and has just appeared in latest git.
To get this far dotnet20 and native gdiplus are required.
Result of bisect:
bee36fe8315cdacf2d71a903ab524c929e645122 is first bad commit
commit bee36fe8315cdacf2d71a903ab524c929e645122
Author: Jacek Caban <jacek(a)codeweavers.com>
Date: Mon May 11 13:14:45 2009 +0200
urlmon: Cache the binding notif window.
:040000 040000 108b1f61d69fb4795f946ca9729a07d67eef3f88
be6a29bddddb2270451e4ade922d955fd935cda9 M dlls
http://source.winehq.org/git/wine.git/?a=commit;h=bee36fe8315cdacf2d71a903a…
Reverting this commit fixes the problem.
Workaround is native urlmon.dll.
--
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=20287
Summary: SketchUp will not install
Product: Wine
Version: 1.1.30
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jewlzap(a)yahoo.com
Linux version 2.6.26-2-686 (Debian 2.6.26-19)
Trying to install SketchUp 7.1.
Executed "wine ./GoogleSketchUpWEN.exe".
Received the following message window: "This Operating System not Supported".
--
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=18601
Summary: Google Sketchup 7 crashes early in wine's imm.dll
Product: Wine
Version: 1.1.21
Platform: Other
URL: http://sketchup.google.com
OS/Version: other
Status: NEW
Keywords: download, patch, regression
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Not sure when this started; I first noticed it about a month ago.
Sketchup 7 installs, but when you start it up, it crashes with
trace:imm:DllMain 0x7ca20000, 2, (nil)
trace:imm:DllMain 0x7ca20000, 3, (nil)
wine: Unhandled page fault on read access to 0x00000006 at address 0x7ca28f69
(thread 0009), starting debugger...
Backtrace:
=>0 0x7ca28f69 ImmAssociateContext+0x229(hWnd=0x100b6, hIMC=(nil))
[imm32/imm.c:476] in imm32 (0x0032f2d4)
1 0x02ca9a9e in xul (+0xaa9a9e) (0x0032f304)
or
wine: Unhandled page fault on write access to 0x00000006 at address 0x7cc626d1
(thread 0009), starting debugger...
Backtrace:
=>0 0x7cc626d1 ImmGetContext+0x61(hWnd=0x10038) [imm32/imm.c:1381] in imm32
(0x0032f938)
1 0x7cc627dd ImmProcessKey+0x3d(hwnd=0x10038, hKL=0x4090409, vKey=39,
lKeyData=21823489, unknown=0) [imm32/imm.c:2775] in imm32 (0x0032fa88)
2 0x7eb28dec peek_message+0x238c(msg=0x142a40, hwnd=(nil), first=0,
last=4294967295, flags=83820545, changed_mask=1279)
[dlls/user32/message.c:1768] in user32 (0x0032fdb8)
1381 data->IMC.hWnd = hWnd;
In both cases it looks like a bogus small value is in
IMM_GetThreadData()->defaultContext
Ignoring that and replacing it with NULL seems to work around
the problem; see attached patch.
--
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=31199
Bug #: 31199
Summary: Google Sketchup Layout crashes when opening a new
document
Product: Wine
Version: 1.5.8
Platform: x86
URL: http://dl.google.com/sketchup/GoogleSketchUpProWEN.exe
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Depends on: 31193, 31198
Classification: Unclassified
Created attachment 40973
--> http://bugs.winehq.org/attachment.cgi?id=40973
terminal output
After bug 31198, ignore the startup tips and try to create a new document.
You'll get a crash:
Backtrace:
=>0 0x1001060a in atlastrtflib (+0x1060a) (0x0032e46c)
1 0x7eb371fb ME_MakeEditor+0x13a(texthost=0x26d37d8, bEmulateVersion10=0)
[/home/austin/wine-git/dlls/riched20/editor.c:2674] in riched20 (0x0032e4bc)
2 0x7eb54425 CreateTextServices+0x94(pUnkOuter=(nil), pITextHost=0x26d37d8,
ppUnk=0x26d37dc) [/home/austin/wine-git/dlls/riched20/txtsrv.c:410] in riched20
(0x0032e50c)
3 0x10013c03 in atlastrtflib (+0x13c02) (0x026d37dc)
0x1001060a: movl 0x0(%ecx),%eax
but native riched20 doesn't help. Terminal also shows a lot of mshtml stuff,
but native ie7 didn't help either.
--
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=24953
Summary: A generic error occurred in GDI+
Product: Wine
Version: unspecified
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdiplus
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: otxando(a)gmail.com
Created an attachment (id=31598)
--> (http://bugs.winehq.org/attachment.cgi?id=31598)
error file
when running google sketchup's layout 3 crash
see attachment of message error
--
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=16164
Summary: Sketchup 7 crashes when you click "Start using Sketchup"
Product: Wine
Version: 1.1.9
Platform: Other
URL: http://sketchup.google.com
OS/Version: other
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: mshtml
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
This is the first bug people run into.
(The next one is bug 14045.)
When you start SketchUp, it puts up a dialog saying
"Welcome to Sketchup". When you click "Start using Sketchup",
it crashes before putting up the main window.
You can work around it by checking "Don't show this again",
and then running the app again, but it would be nice if that
wasn't needed.
Mike Hearn said the cause was mshtml wasn't refcounted
properly, so I checked... and he's right. Hacking DLLCanUnloadNow
in mshtml to always return S_FALSE, like this,
diff --git a/dlls/mshtml/main.c b/dlls/mshtml/main.c
@@ -231,7 +231,7 @@ HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID
riid, LPVOID *ppv)
HRESULT WINAPI DllCanUnloadNow(void)
{
TRACE("() ref=%d\n", module_ref);
- return module_ref ? S_FALSE : S_OK;
+ return S_FALSE; //module_ref ? S_FALSE : S_OK;
gets you past the crash. So presumably it's an mshtml
bug. (In honor of this bug, I created an mshtml category in
bugzilla finally...)
--
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=16166
Summary: Google Sketchup 7 display often corrupt until you click
on it
Product: Wine
Version: 1.1.9
Platform: Other
URL: http://sketchup.google.com
OS/Version: other
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Often, Sketchup 7 leaves garbage on the screen
until you click on the main area.
For instance, it always does this when you maximize it;
clicking on the main area brings back the expected display.
--
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=17187
Summary: sketchup 7 display worse in wine 1.1.13 than 1.1.12
Product: Wine
Version: 1.1.13
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jean-louis.bourdon(a)laposte.net
Created an attachment (id=19078)
--> (http://bugs.winehq.org/attachment.cgi?id=19078)
normal display (fine)
lots of flickering blue,
selection difficult.
--
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=19303
Summary: Sketchup 7 shows toolbars and menus, but work area is
blank
Product: Wine
Version: 1.1.25
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fester(a)rucls.net
Created an attachment (id=22349)
--> (http://bugs.winehq.org/attachment.cgi?id=22349)
Sketchup started using the command in the Sketchup icon
I am attempting to run Sketchup7 from Wine 1.1.25 under Ubuntu 9.04 (Gnome). I
have installed winetricks, and done the OPEN-GL fix.
Sketchup loaded under Wine, but when running the program, while the toolbars
and menus all display correctly, the work area remains blank (black). The
cursor displays in the work area, but when you draw with it, there aren't any
lines.
I assumed this was a problem which required the use of a new graphics card
until last week when, after downloading lots of updates, Sketchup began to work
the correct way, the display was white with the axis lines showing. I decided I
wanted a different template, so I changed it and re-started Sketchup. After
re-starting, the work area was once again blank (black).
--
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.