summaryrefslogtreecommitdiff
path: root/multiload/load-graph.c
diff options
context:
space:
mode:
Diffstat (limited to 'multiload/load-graph.c')
-rw-r--r--multiload/load-graph.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/multiload/load-graph.c b/multiload/load-graph.c
index da40c8a9..a6508056 100644
--- a/multiload/load-graph.c
+++ b/multiload/load-graph.c
@@ -87,6 +87,8 @@ load_graph_draw (LoadGraph *g)
}
gtk_widget_queue_draw (g->disp);
+
+ cairo_destroy (cr);
}
/* Updates the load graph when the timeout expires */
@@ -205,6 +207,10 @@ load_graph_expose (GtkWidget *widget,
cairo_set_source_surface (cr, g->surface, 0, 0);
cairo_paint (cr);
+#if !GTK_CHECK_VERSION (3, 0, 0)
+ cairo_destroy (cr);
+#endif
+
return FALSE;
}