plotit.c #3/9, drop some comments

This commit is contained in:
rlar 2012-08-04 16:03:08 +02:00
parent 5c43e8f2fc
commit ed4ad1c0dd
1 changed files with 5 additions and 5 deletions

View File

@ -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");