]> git.eshelyaron.com Git - emacs.git/commitdiff
(w32font_draw): Initialize orig_clip before getting it, and delete it
authorJason Rumney <jasonr@gnu.org>
Thu, 4 Dec 2008 15:21:53 +0000 (15:21 +0000)
committerJason Rumney <jasonr@gnu.org>
Thu, 4 Dec 2008 15:21:53 +0000 (15:21 +0000)
when finished.

src/w32font.c

index c9494b4f29c2c3962098607a0bafab80b7b77807..9609605306fbbe1e331a8c8bea33dfee593db57c 100644 (file)
@@ -530,18 +530,23 @@ w32font_draw (s, from, to, x, y, with_background)
      int from, to, x, y, with_background;
 {
   UINT options;
-  HRGN orig_clip;
+  HRGN orig_clip = NULL;
   struct w32font_info *w32font = (struct w32font_info *) s->font;
 
   options = w32font->glyph_idx;
 
-  /* Save clip region for later restoration.  */
-  GetClipRgn(s->hdc, orig_clip);
-
   if (s->num_clips > 0)
     {
       HRGN new_clip = CreateRectRgnIndirect (s->clip);
 
+      /* Save clip region for later restoration.  */
+      orig_clip = CreateRectRgn (0, 0, 0, 0);
+      if (!GetClipRgn(s->hdc, orig_clip))
+       {
+         DeleteObject (orig_clip);
+         orig_clip = NULL;
+       }
+
       if (s->num_clips > 1)
         {
           HRGN clip2 = CreateRectRgnIndirect (s->clip + 1);
@@ -585,9 +590,10 @@ w32font_draw (s, from, to, x, y, with_background)
 
   /* Restore clip region.  */
   if (s->num_clips > 0)
-    {
-      SelectClipRgn (s->hdc, orig_clip);
-    }
+    SelectClipRgn (s->hdc, orig_clip);
+
+  if (orig_clip)
+    DeleteObject (orig_clip);
 }
 
 /* w32 implementation of free_entity for font backend.