Commit 96ed748d authored by Ralf Baechle's avatar Ralf Baechle

qtronix.c: Handle kmalloc failure.

Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
parent 9ff77c46
......@@ -591,6 +591,11 @@ static int __init psaux_init(void)
return retval;
queue = (struct aux_queue *) kmalloc(sizeof(*queue), GFP_KERNEL);
if (!queue) {
misc_deregister(&psaux_mouse);
return -ENOMEM;
}
memset(queue, 0, sizeof(*queue));
queue->head = queue->tail = 0;
init_waitqueue_head(&queue->proc_list);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment