提交 daa74a25 编写于 作者: S Sachin Kamat 提交者: Greg Kroah-Hartman

tty: vt: Remove redundant null check before kfree.

kfree on a NULL pointer is a no-op.
Signed-off-by: NSachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
上级 13c3237d
...@@ -410,10 +410,8 @@ static void con_release_unimap(struct uni_pagedir *p) ...@@ -410,10 +410,8 @@ static void con_release_unimap(struct uni_pagedir *p)
kfree(p->inverse_translations[i]); kfree(p->inverse_translations[i]);
p->inverse_translations[i] = NULL; p->inverse_translations[i] = NULL;
} }
if (p->inverse_trans_unicode) { kfree(p->inverse_trans_unicode);
kfree(p->inverse_trans_unicode); p->inverse_trans_unicode = NULL;
p->inverse_trans_unicode = NULL;
}
} }
/* Caller must hold the console lock */ /* Caller must hold the console lock */
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册