Explorar o código

Merge "soc: Add proper null check for client array pointer"

Linux Build Service Account %!s(int64=6) %!d(string=hai) anos
pai
achega
c8d4438836
Modificáronse 1 ficheiros con 4 adicións e 0 borrados
  1. 4 0
      soc/snd_event.c

+ 4 - 0
soc/snd_event.c

@@ -301,6 +301,10 @@ void snd_event_mstr_add_client(struct snd_event_clients **snd_clients,
 		}
 		client->cl_arr = kzalloc(sizeof(struct snd_event_client_array),
 					 GFP_KERNEL);
+		if (!client->cl_arr) {
+			*snd_clients = ERR_PTR(-ENOMEM);
+			return;
+		}
 		*snd_clients = client;
 	} else {
 		struct snd_event_client_array *new;