pstore: Fix NULL pointer fault if get NULL prz in ramoops_get_next_prz
authorLiu ShuoX <shuox.liu@intel.com>
Mon, 17 Mar 2014 20:57:49 +0000 (13:57 -0700)
committerTony Luck <tony.luck@intel.com>
Mon, 17 Mar 2014 21:14:03 +0000 (14:14 -0700)
commitb0aa931fb84431394d995472d0af2a6c2b61064d
treedc51c08fc851d57745ebc79851a9622d7e8b4d15
parentaa9a4a1edfbd3d223af01db833da2f07850bc655
pstore: Fix NULL pointer fault if get NULL prz in ramoops_get_next_prz

ramoops_get_next_prz get the prz according the paramters. If it get a
uninitialized prz, access its members by following persistent_ram_old_size(prz)
will cause a NULL pointer crash.
Ex: if ftrace_size is 0, fprz will be NULL.

Fix it by return NULL in advance.

Signed-off-by: Liu ShuoX <shuox.liu@intel.com>
Acked-by: Kees Cook <keescook@chromium.org>
Signed-off-by: Tony Luck <tony.luck@intel.com>
fs/pstore/ram.c