summaryrefslogtreecommitdiffstats
path: root/src/flood-context.cpp
diff options
context:
space:
mode:
authorJohn Bintz <me@johnbintz.com>2007-02-25 13:58:53 +0000
committerjohncoswell <johncoswell@users.sourceforge.net>2007-02-25 13:58:53 +0000
commit4425e6137706cca93d65793490d199b0380babbc (patch)
tree0def2a18109857ff5a64a2dc44bd31f328aff733 /src/flood-context.cpp
parentAdd ability to flood fill areas of contiguous color (diff)
downloadinkscape-4425e6137706cca93d65793490d199b0380babbc.tar.gz
inkscape-4425e6137706cca93d65793490d199b0380babbc.zip
Forgot to free some of the pixel storage
(bzr r2436)
Diffstat (limited to 'src/flood-context.cpp')
-rw-r--r--src/flood-context.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/flood-context.cpp b/src/flood-context.cpp
index 4eb82b767..27df7c311 100644
--- a/src/flood-context.cpp
+++ b/src/flood-context.cpp
@@ -496,6 +496,8 @@ static void sp_flood_do_flood_fill(SPEventContext *event_context, GdkEvent *even
(GdkPixbufDestroyNotify)g_free,
NULL);
+ g_free(trace_px);
+
NR::Matrix inverted_affine = NR::Matrix(affine).inverse();
do_trace(pixbuf, desktop, inverted_affine);