Skip to content
Commit 4d523b60 authored by Jason Liu's avatar Jason Liu Committed by Artem Bityutskiy
Browse files

mtd: check parts pointer before using it



The code has the check for parts but it called after kmemdup,
kmemdup(parts, sizeof(*parts) * nr_parts,...)
if (!parts)
	return -ENOMEM

In fact, we need check parts before safely using it.
and we also need check the real_parts to make sure kmemdup
allocation sucessfully.

Signed-off-by: default avatarJason Liu <jason.hui@linaro.org>
Signed-off-by: default avatarArtem Bityutskiy <artem.bityutskiy@intel.com>
parent e2e24e8e
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