emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r99854: Fix bug#5856: don't dereferen


From: Eli Zaretskii
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r99854: Fix bug#5856: don't dereference glyphs beyond end of glyph_row.
Date: Fri, 09 Apr 2010 00:14:33 +0300
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 99854
committer: Eli Zaretskii <address@hidden>
branch nick: trunk
timestamp: Fri 2010-04-09 00:14:33 +0300
message:
  Fix bug#5856: don't dereference glyphs beyond end of glyph_row.
  
   xdisp.c (set_cursor_from_row): Don't dereference glyphs beyond
   the end of TEXT_AREA.  (Bug#5856)
modified:
  src/ChangeLog
  src/xdisp.c
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2010-04-08 18:22:51 +0000
+++ b/src/ChangeLog     2010-04-08 21:14:33 +0000
@@ -1,3 +1,8 @@
+2010-04-08  Eli Zaretskii  <address@hidden>
+
+       * xdisp.c (set_cursor_from_row): Don't dereference glyphs beyond
+       the end of TEXT_AREA.  (Bug#5856)
+
 2010-04-08  Jan Djärv  <address@hidden>
 
        * xsettings.c (XSETTINGS_FONT_NAME): Move XSETTINGS_FONT_NAME out of

=== modified file 'src/xdisp.c'
--- a/src/xdisp.c       2010-04-04 09:30:38 +0000
+++ b/src/xdisp.c       2010-04-08 21:14:33 +0000
@@ -12553,6 +12553,9 @@
   EMACS_INT pos_before = MATRIX_ROW_START_CHARPOS (row) + delta;
   EMACS_INT pos_after = MATRIX_ROW_END_CHARPOS (row) + delta;
   struct glyph *glyph_before = glyph - 1, *glyph_after = end;
+  /* A glyph beyond the edge of TEXT_AREA which we should never
+     touch.  */
+  struct glyph *glyphs_end = end;
   /* Non-zero means we've found a match for cursor position, but that
      glyph has the avoid_cursor_p flag set.  */
   int match_with_avoid_cursor = 0;
@@ -12594,7 +12597,7 @@
 
          /* If the glyph row is reversed, we need to process it from back
             to front, so swap the edge pointers.  */
-         end = glyph - 1;
+         glyphs_end = end = glyph - 1;
          glyph += row->used[TEXT_AREA] - 1;
          /* Reverse the known positions in the row.  */
          last_pos = pos_after = MATRIX_ROW_START_CHARPOS (row) + delta;
@@ -12772,7 +12775,8 @@
   /* Step 2: If we didn't find an exact match for point, we need to
      look for a proper place to put the cursor among glyphs between
      GLYPH_BEFORE and GLYPH_AFTER.  */
-  if (!(BUFFERP (glyph->object) && glyph->charpos == pt_old)
+  if (!((row->reversed_p ? glyph > glyphs_end : glyph < glyphs_end)
+       && BUFFERP (glyph->object) && glyph->charpos == pt_old)
       && bpos_covered < pt_old)
     {
       if (row->ends_in_ellipsis_p && pos_after == last_pos)
@@ -12938,9 +12942,15 @@
       struct glyph *g1 =
        MATRIX_ROW_GLYPH_START (matrix, w->cursor.vpos) + w->cursor.hpos;
 
+      /* Don't consider glyphs that are outside TEXT_AREA.  */
+      if (!(row->reversed_p ? glyph > glyphs_end : glyph < glyphs_end))
+       return 0;
       /* Keep the candidate whose buffer position is the closest to
         point.  */
-      if (BUFFERP (g1->object)
+      if (/* previous candidate is a glyph in TEXT_AREA of that row */
+         w->cursor.hpos >= 0
+         && w->cursor.hpos < MATRIX_ROW_USED(matrix, w->cursor.vpos)
+         && BUFFERP (g1->object)
          && (g1->charpos == pt_old /* an exact match always wins */
              || (BUFFERP (glyph->object)
                  && eabs (g1->charpos - pt_old)


reply via email to

[Prev in Thread] Current Thread [Next in Thread]