From: John Darrington Date: Sun, 4 Jul 2010 12:49:54 +0000 (+0200) Subject: Fix memory leak in examine X-Git-Tag: v0.7.6~343 X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;ds=inline;h=57847b89fe3b943d414ac797d3efe11bd847cfff;p=pspp-builds.git Fix memory leak in examine --- diff --git a/src/language/stats/examine.q b/src/language/stats/examine.q index ab361735..d4ac27dd 100644 --- a/src/language/stats/examine.q +++ b/src/language/stats/examine.q @@ -365,6 +365,7 @@ show_npplot (const struct variable **dependent_var, } statistic_destroy (&np->parent.parent); + casereader_destroy (reader); } } }