remove problems with simple node names

This commit is contained in:
h_vogt 2008-12-06 12:33:43 +00:00
parent b61bb11195
commit a11ba63928
2 changed files with 4 additions and 3 deletions

View File

@ -166,7 +166,7 @@ com_fft(wordlist *wl)
ngood++;
}
}
free_pnode(first_name);
if (!ngood) {
return;
}
@ -240,7 +240,7 @@ com_fft(wordlist *wl)
tfree(tdvec);
tfree(fdvec);
free_pnode(first_name);
}

View File

@ -188,7 +188,7 @@ com_spec(wordlist *wl)
ngood++;
}
}
free_pnode(first_name);
/* free_pnode(first_name); h_vogt 081206 */
if (!ngood) {
tfree(win);
return;
@ -272,6 +272,7 @@ com_spec(wordlist *wl)
tfree(dc);
tfree(tdvec);
tfree(fdvec);
free_pnode(first_name);
#ifdef KEEPWINDOW
f = alloc(struct dvec);