Browse Source

plotit.c #3/9, drop some comments

rlar 14 years ago
parent
commit
ed4ad1c0dd
  1. 10
      src/frontend/plotting/plotit.c

10
src/frontend/plotting/plotit.c

@ -262,14 +262,14 @@ plotit(wordlist *wl, char *hcopy, char *devname)
/* First get the command line, without the limits.
Wii be used for zoomed windows */
wwl = wl_copy(wl);
xynull = getlims(wwl, "xl", 2); /* (void) getlims(wwl, "xl", 2); */
tfree(xynull); /*memory leak, if return value is not freed */
xynull = getlims(wwl, "xl", 2);
tfree(xynull);
xynull = getlims(wwl, "xlimit", 2);
tfree(xynull); /*memory leak, if return value is not freed */
tfree(xynull);
xynull = getlims(wwl, "yl", 2);
tfree(xynull); /*memory leak, if return value is not freed */
tfree(xynull);
xynull = getlims(wwl, "ylimit", 2);
tfree(xynull); /*memory leak, if return value is not freed */
tfree(xynull);
/* remove tile, xlabel, ylabel */
nxlabel = getword(wwl, "xlabel");
nylabel = getword(wwl, "ylabel");

Loading…
Cancel
Save