Browse Source

plotit.c, properly free a reversed wordlist

pre-master-46
h_vogt 10 years ago
committed by rlar
parent
commit
841f2846fe
  1. 3
      src/frontend/plotting/plotit.c

3
src/frontend/plotting/plotit.c

@ -272,7 +272,8 @@ plotit(wordlist *wl, char *hcopy, char *devname)
tfree(ntitle);
}
cline = wl_flatten(wl_reverse(tail));
tail = wl_reverse(tail);
cline = wl_flatten(tail);
wl_free(tail);
/* Now extract all the parameters. */

Loading…
Cancel
Save