Removed uninitialised variable.
authorJohn Darrington <john@darrington.wattle.id.au>
Wed, 26 May 2010 20:02:39 +0000 (22:02 +0200)
committerJohn Darrington <john@darrington.wattle.id.au>
Wed, 26 May 2010 20:02:39 +0000 (22:02 +0200)
Removed an uninitialised variable which was being
dereferenced and hence crashing.

src/output/charts/np-plot-cairo.c
src/output/charts/np-plot.c
src/output/charts/np-plot.h

index a9186527b81d442954d03e9c735181806b05ade2..8c96b73fadaf517c93a388e8c26f087bf4a7b0ab 100644 (file)
@@ -34,7 +34,7 @@ np_plot_chart_draw (const struct chart_item *chart_item, cairo_t *cr,
   struct casereader *data;
   struct ccase *c;
 
-  xrchart_write_title (cr, geom, _("Normal Q-Q Plot of %s"), npp->label);
+  xrchart_write_title (cr, geom, _("Normal Q-Q Plot of %s"), chart_item->title);
   xrchart_write_xlabel (cr, geom, _("Observed Value"));
   xrchart_write_ylabel (cr, geom, _("Expected Normal"));
   xrchart_write_xscale (cr, geom,
@@ -61,8 +61,7 @@ dnp_plot_chart_draw (const struct chart_item *chart_item, cairo_t *cr,
   struct casereader *data;
   struct ccase *c;
 
-  xrchart_write_title (cr, geom, _("Detrended Normal Q-Q Plot of %s"),
-                       dnpp->label);
+  xrchart_write_title (cr, geom, _("Detrended Normal Q-Q Plot of %s"), chart_item->title);
   xrchart_write_xlabel (cr, geom, _("Observed Value"));
   xrchart_write_ylabel (cr, geom, _("Dev from Normal"));
   xrchart_write_xscale (cr, geom, dnpp->y_min, dnpp->y_max, 5);
index e912479a72bbd0bceca65079a1bfc3c098522c80..dfc74603003f342dacc7141ee347d472aa8a127b 100644 (file)
@@ -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);
 }
 
index 82194e2016bd984668b303267751bd8b99365c86..82c81ed8f35c923fcb54df5342b5bf3f4e44d3b1 100644 (file)
@@ -25,7 +25,6 @@ struct np;
 struct np_plot_chart
   {
     struct chart_item chart_item;
-    char *label;
     struct casereader *data;
     bool detrended;