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.
http://bugs.winehq.org/show_bug.cgi?id=16187
Summary: Google Sketchup Layout crashes on startup
Product: Wine
Version: 1.1.9
Platform: PC
URL: http://sketchup.google.com
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
"LayOut", which comes with Sketchup Pro, crashes on startup,
just after it puts up the "Tip of the Day".
You have to do "winetricks dotnet20" to even get that far.
Installing gdiplus seems to make things worse; even after
uninstalling it, layout crashes much sooner.
--
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=31198
Bug #: 31198
Summary: Google Sketchup Layout crashes during startup
Product: Wine
Version: 1.5.8
Platform: x86
URL: http://dl.google.com/sketchup/GoogleSketchUpProWEN.exe
OS/Version: Linux
Status: NEW
Keywords: download
Severity: minor
Priority: P2
Component: gdiplus
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Depends on: 31193
Classification: Unclassified
I get a crash with builtin gdiplus. Terminal shows:
fixme:gdiplus:GdipGetFamilyName No support for handling of multiple languages!
fixme:gdiplus:GdipCreateBitmapFromGraphics hacked stub
..
image.c:1975: move_bitmap: Assertion `dst->image.stream == ((void *)0)' failed.
winetricks gdiplus works around 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=26166
Summary: sketchup
Product: Wine
Version: 1.3.14
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: sebastien.ramage(a)gmail.com
Google Sketchup 8.0.4811
Test on Ubuntu 10.10 with Wine 1.3.14
The selection box tool is not working. When trying to clic and drag, no box
appears AND the display freeze. The application seems working but the display
is not refresh anymore.
So the application can't be used
--
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.