cairo: Fix memory leak of pango_layout_iter.
authorBen Pfaff <blp@cs.stanford.edu>
Sun, 21 Feb 2016 05:20:03 +0000 (21:20 -0800)
committerBen Pfaff <blp@cs.stanford.edu>
Sun, 21 Feb 2016 05:20:09 +0000 (21:20 -0800)
Found by valgrind.
Reported by John Darrington.
Bug #47074.

src/output/cairo.c

index 4452b46a8c40b569a06b7cbbf9fc6a8581edd4b9..1a8c78c69fe0d0062dcb379aa0f4d758c2ebb48c 100644 (file)
@@ -1,5 +1,5 @@
 /* PSPP - a program for statistical analysis.
-   Copyright (C) 2009, 2010, 2011, 2012, 2013, 2014, 2015 Free Software Foundation, Inc.
+   Copyright (C) 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016 Free Software Foundation, Inc.
 
    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
@@ -1084,6 +1084,7 @@ xr_layout_cell_text (struct xr_driver *xr,
             break;
         }
       while (pango_layout_iter_next_line (iter));
+      pango_layout_iter_free (iter);
 
       /* If enabled, draws a green line across the chosen breakpoint, which can
          be useful for debugging issues with breaking.  */