Skip to content

Commit b172824

Browse files
author
craig
committed
Fix mem leak
1 parent 1b11c06 commit b172824

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ set(DEBIAN_PACKAGE_SECTION "gtk")
88
set(CPACK_SOURCE_GENERATOR "TBZ2")
99
set(CPACK_PACKAGE_VERSION_MAJOR "1")
1010
set(CPACK_PACKAGE_VERSION_MINOR "8")
11-
set(CPACK_PACKAGE_VERSION_PATCH "15")
11+
set(CPACK_PACKAGE_VERSION_PATCH "16")
1212
set(CPACK_PACKAGE_CONTACT "Craig Drummond <[email protected]>")
1313
set(QTCURVE_VERSION "${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}")
1414
set(QTCURVE_VERSION_FULL "${QTCURVE_VERSION}.${CPACK_PACKAGE_VERSION_PATCH}")

ChangeLog

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
1.8.16
2+
------
3+
1. fix memleak with newer versions of cairo.
4+
15
1.8.15
26
------
37
1. Fix tab activation (via mouse) when configured to drag windows from all

style/shadowhelper.c

+1
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ static Pixmap createPixmap(const guint8 *pix)
5858
cairo_rectangle(cr, 0, 0, shadowSize, shadowSize);
5959
cairo_fill(cr);
6060
cairo_destroy(cr);
61+
cairo_surface_destroy(dest);
6162
g_object_unref(pixbuf);
6263
return pixmap;
6364
}

0 commit comments

Comments
 (0)