diff options
| author | John Bintz <me@johnbintz.com> | 2007-02-25 13:58:53 +0000 |
|---|---|---|
| committer | johncoswell <johncoswell@users.sourceforge.net> | 2007-02-25 13:58:53 +0000 |
| commit | 4425e6137706cca93d65793490d199b0380babbc (patch) | |
| tree | 0def2a18109857ff5a64a2dc44bd31f328aff733 /src/flood-context.cpp | |
| parent | Add ability to flood fill areas of contiguous color (diff) | |
| download | inkscape-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.cpp | 2 |
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); |
