diff options
Diffstat (limited to 'console/console.c')
-rw-r--r-- | console/console.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/console/console.c b/console/console.c index 0f4ca22e..46dfa406 100644 --- a/console/console.c +++ b/console/console.c @@ -248,10 +248,11 @@ vcons_release (vcons_t vcons) if (vcons->prev) vcons->prev->next = vcons->next; + else + vcons->cons->vcons_list = vcons->next; if (vcons->next) vcons->next->prev = vcons->prev; - if (!vcons->prev && !vcons->next) - vcons->cons->vcons_list = NULL; + vcons->cons->vcons_length--; vcons->cons->refcnt--; free (vcons); |