From: johncoswell Date: Sun, 25 Feb 2007 13:58:53 +0000 (+0000) Subject: Forgot to free some of the pixel storage X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=d847622776536e145abafa84e4a34f59fc5efe4d;p=inkscape.git Forgot to free some of the pixel storage --- 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);