Version: (using KDE KDE 3.2.0) Installed from: SuSE RPMs Compiler: 3.3.1 OS: Linux I'm using TwinView on a NVIDIA Geforce2 Go Graphic Card (Inspiron 8200 Notebook). When I switch to full screen mode, krdc crashes (kde 3.1.4 worked fine). When twin view is switched off, full screen mode works but the window border is still displayed.
The second issue is probably the same as Bug 69635. Tim suggested it might be a kwin bug which sounds just about right to me, regarding the crash problem.
can not check if the bug is present in KDE 3.2.2 since krdc still crashes when switching to full screen mode
This bug _still_ exists, When I run on the primary window krdc can fullscreen, when I run on the alternate display krdc crashes and complains of a invalid bt.
Created attachment 17237 [details] krdc crash report
i'm affected by krdc crashes when nvidia twinview is enabled using krdc 3.5.4 i joined the crash report.
SVN commit 571507 by kling: Check the return value from XF86VidModeGetAllModeLines() to avoid crashing. BUG: 73519 M +6 -2 vidmode.cpp --- branches/KDE/3.5/kdenetwork/krdc/vidmode.cpp #571506:571507 @@ -38,7 +38,9 @@ if (!XF86VidModeQueryExtension(dpy, &eventB, &errorB)) return; - XF86VidModeGetAllModeLines(dpy,oldResolution.screen,&modecount, &modes); + if (!XF86VidModeGetAllModeLines(dpy, oldResolution.screen, &modecount, &modes)) + return; + for (int i = 0; i < modecount; i++) { int w = (*modes[i]).hdisplay; int h = (*modes[i]).vdisplay; @@ -69,7 +71,9 @@ if (!XF86VidModeQueryExtension(dpy, &eventB, &errorB)) return Resolution(); - XF86VidModeGetAllModeLines(dpy,screen,&modecount, &modes); + if (!XF86VidModeGetAllModeLines(dpy,screen,&modecount, &modes)) + return Resolution(); + int cw = (*modes[0]).hdisplay; int ch = (*modes[0]).vdisplay; nx = cw;
*** Bug 132273 has been marked as a duplicate of this bug. ***