scroll out of the Scrollback buffer. Bugfix suggested by Craig
Huckabee <huck@cs.wisc.edu>.
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@11442
dc483132-0cff-0310-8789-
dd5450dbe970
+1999-04-17 <tytso@rsts-11.mit.edu>
+
+ * screen.c (DeleteTopLine): Free the top line before when we allow
+ it to scroll out of the Scrollback buffer. Bugfix
+ suggested by Craig Huckabee <huck@cs.wisc.edu>.
+
Mon May 10 15:28:51 1999 Danilo Almeida <dalmeida@mit.edu>
* Makefile.in: Do win32 build in subdir.
pScr->buffer_top = pScr->buffer_top->next;
assert(pScr->buffer_top != NULL);
+ free(pScr->buffer_top->prev);
pScr->buffer_top->prev = NULL;
pScr->numlines--;