pm: cpupower: bench: Prevent NULL dereference on malloc failure
If malloc returns NULL due to low memory, 'config' pointer can be NULL. Add a check to prevent NULL dereference. Link: https://lore.kernel.org/r/20250219122715.3892223-1-quic_zhonhan@quicinc.com Signed-off-by: Zhongqiu Han <quic_zhonhan@quicinc.com> Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
This commit is contained in:
@@ -121,6 +121,10 @@ out_dir:
|
||||
struct config *prepare_default_config()
|
||||
{
|
||||
struct config *config = malloc(sizeof(struct config));
|
||||
if (!config) {
|
||||
perror("malloc");
|
||||
return NULL;
|
||||
}
|
||||
|
||||
dprintf("loading defaults\n");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user