aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Cracauer <cracauer@FreeBSD.org>1999-04-13 12:43:55 +0000
committerMartin Cracauer <cracauer@FreeBSD.org>1999-04-13 12:43:55 +0000
commit466b673d7e995b5c6814daefdc7b3adff6f48d95 (patch)
tree2ea34e37cd5770d59e5d1f7fe844479fda11ebe1
parent4b3cd41c63defb69260a38b23f634a04c3822936 (diff)
Notes
-rw-r--r--bin/sh/memalloc.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/bin/sh/memalloc.c b/bin/sh/memalloc.c
index e96d1b4196b8..858d567324cf 100644
--- a/bin/sh/memalloc.c
+++ b/bin/sh/memalloc.c
@@ -39,7 +39,7 @@
static char sccsid[] = "@(#)memalloc.c 8.3 (Berkeley) 5/4/95";
#endif
static const char rcsid[] =
- "$Id: memalloc.c,v 1.12 1998/09/13 19:24:57 tegge Exp $";
+ "$Id: memalloc.c,v 1.13 1999/04/12 14:23:36 cracauer Exp $";
#endif /* not lint */
#include "shell.h"
@@ -187,10 +187,6 @@ popstackmark(mark)
INTOFF;
while (stackp != mark->stackp) {
- if (stackp == NULL) {
- write(2, "Oops, stackp deleted\n", 21);
- abort();
- }
sp = stackp;
stackp = sp->prev;
ckfree(sp);