mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-09 20:32:04 +09:00
UBIFS: fix oops on error path in read_pnode
commit 54acbaaa52 upstream.
Thanks to coverity which spotted that UBIFS will oops if 'kmalloc()'
in 'read_pnode()' fails and we dereference a NULL 'pnode' pointer
when we 'goto out'.
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
b7236edfb8
commit
5cb4b85443
@@ -1269,10 +1269,9 @@ static int read_pnode(struct ubifs_info *c, struct ubifs_nnode *parent, int iip)
|
||||
lnum = branch->lnum;
|
||||
offs = branch->offs;
|
||||
pnode = kzalloc(sizeof(struct ubifs_pnode), GFP_NOFS);
|
||||
if (!pnode) {
|
||||
err = -ENOMEM;
|
||||
goto out;
|
||||
}
|
||||
if (!pnode)
|
||||
return -ENOMEM;
|
||||
|
||||
if (lnum == 0) {
|
||||
/*
|
||||
* This pnode was not written which just means that the LEB
|
||||
|
||||
Reference in New Issue
Block a user