diff options
| author | Matthew Dillon <dillon@FreeBSD.org> | 2001-12-19 19:04:57 +0000 |
|---|---|---|
| committer | Matthew Dillon <dillon@FreeBSD.org> | 2001-12-19 19:04:57 +0000 |
| commit | a57094a011eefe38a814021b00fc20a9e3c1046f (patch) | |
| tree | 9c73db933b8245a96832230b61946f6d86484c00 /sys/kern/subr_sbuf.c | |
| parent | df6ee7b7a124b60db6c4efaf2c2ee1bc4ebb5357 (diff) | |
Notes
Diffstat (limited to 'sys/kern/subr_sbuf.c')
| -rw-r--r-- | sys/kern/subr_sbuf.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/kern/subr_sbuf.c b/sys/kern/subr_sbuf.c index ed04ad57ba92..72e65227d12e 100644 --- a/sys/kern/subr_sbuf.c +++ b/sys/kern/subr_sbuf.c @@ -461,12 +461,15 @@ sbuf_len(struct sbuf *s) void sbuf_delete(struct sbuf *s) { + int isdyn; + assert_sbuf_integrity(s); /* don't care if it's finished or not */ if (SBUF_ISDYNAMIC(s)) SBFREE(s->s_buf); + isdyn = SBUF_ISDYNSTRUCT(s); bzero(s, sizeof *s); - if (SBUF_ISDYNSTRUCT(s)) + if (isdyn) SBFREE(s); } |
