After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 115284 - SIGSEGV on FrameBuffer backend
SIGSEGV on FrameBuffer backend
Status: RESOLVED FIXED
Product: gtk+
Classification: Platform
Component: Backend: X11
unspecified
Other Linux
: High normal
: ---
Assigned To: gtk-bugs
gtk-bugs
Depends on:
Blocks:
 
 
Reported: 2003-06-16 12:47 UTC by Jan Kratochvil
Modified: 2011-02-04 16:12 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
trivia bugfix (711 bytes, patch)
2003-06-16 12:48 UTC, Jan Kratochvil
none Details | Review
Verified functionality of 3 lines removal (467 bytes, patch)
2003-08-08 09:01 UTC, Jan Kratochvil
none Details | Review

Description Jan Kratochvil 2003-06-16 12:47:20 UTC
SIGSEGV:
  • #0 gdk_region_spans_intersect_foreach
    at gdkregion-generic.c line 1718

gdk_region_spans_intersect_foreach() is called only by linux-fb backend.
Comment 1 Jan Kratochvil 2003-06-16 12:48:46 UTC
Created attachment 17550 [details] [review]
trivia bugfix
Comment 2 Owen Taylor 2003-08-04 16:42:21 UTC
Can't the three lines:

  y = span->y;
  left = span->x;
  right = span->x + span->width; /* right is not in the span! */

simply be deleted? I don't see any use of those assignments.
Comment 3 Owen Taylor 2003-08-05 18:52:48 UTC
Bumping priority to high to remind me to simply delete those
lines if I don't hear anything further.
Comment 4 Jan Kratochvil 2003-08-05 19:03:16 UTC
Those three lines apparently can be deleted.
My original patch was just mechanically quick-hacked without further
looking at the code.
I did not test it as I do not currently have fbcon available here but
I have no doubts it would work.
Regards
Comment 5 Jan Kratochvil 2003-08-08 09:01:38 UTC
Created attachment 19027 [details] [review]
Verified functionality of 3 lines removal