X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Foutput%2Fcharts%2Fnp-plot.c;h=dfc74603003f342dacc7141ee347d472aa8a127b;hb=a628323f67aa963f1e0ec866dc6cd9ede022de82;hp=e912479a72bbd0bceca65079a1bfc3c098522c80;hpb=d0b91eae59319ab2756d0d43b9cb15eb9cd3c234;p=pspp-builds.git diff --git a/src/output/charts/np-plot.c b/src/output/charts/np-plot.c index e912479a..dfc74603 100644 --- a/src/output/charts/np-plot.c +++ b/src/output/charts/np-plot.c @@ -36,7 +36,7 @@ make_np_plot (const struct np *np, const struct casereader *reader, if (np->n < 1.0) return NULL; - npp = xmalloc (sizeof *npp); + npp = xzalloc (sizeof *npp); chart_item_init (&npp->chart_item, &np_plot_chart_class, label); npp->data = casereader_clone (reader); npp->y_min = np->y_min; @@ -97,7 +97,6 @@ np_plot_chart_destroy (struct chart_item *chart_item) { struct np_plot_chart *npp = to_np_plot_chart (chart_item); casereader_destroy (npp->data); - free (npp->label); free (npp); }