diff options
-rw-r--r-- | drivers/tty/vt/consolemap.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/tty/vt/consolemap.c b/drivers/tty/vt/consolemap.c index 2aaa0c22840..248381b3072 100644 --- a/drivers/tty/vt/consolemap.c +++ b/drivers/tty/vt/consolemap.c | |||
@@ -410,10 +410,8 @@ static void con_release_unimap(struct uni_pagedir *p) | |||
410 | kfree(p->inverse_translations[i]); | 410 | kfree(p->inverse_translations[i]); |
411 | p->inverse_translations[i] = NULL; | 411 | p->inverse_translations[i] = NULL; |
412 | } | 412 | } |
413 | if (p->inverse_trans_unicode) { | 413 | kfree(p->inverse_trans_unicode); |
414 | kfree(p->inverse_trans_unicode); | 414 | p->inverse_trans_unicode = NULL; |
415 | p->inverse_trans_unicode = NULL; | ||
416 | } | ||
417 | } | 415 | } |
418 | 416 | ||
419 | /* Caller must hold the console lock */ | 417 | /* Caller must hold the console lock */ |