http://bugs.winehq.org/show_bug.cgi?id=8165
tom@mmto.org changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution| |FIXED
------- Additional Comments From tom@mmto.org 2007-25-04 16:38 ------- More info. This and bug 8033 were both on dual core AMD64 processors running the vanilla 32 bit i386 kernel for what that is worth. This whole thing is fixed (as documented in bug 8033) by adding two lines to dlls/comdlg32/printdlg.c and rebuilding wine from source.
--- printdlg.c.ORIG 2007-04-25 13:51:11.000000000 -0700 +++ printdlg.c 2007-04-25 14:02:36.000000000 -0700 @@ -3394,6 +3394,11 @@ } return FALSE; } + + /* TJT - fix for TOPO! page fault crash */ + setupdlg->hDevMode = pdlg.hDevMode; + setupdlg->hDevNames = pdlg.hDevNames; + /* TJT - end fix */ }
/* short cut exit, just return default values */