mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-21 18:50:50 +01:00
mlx(4): Stop checking for failures from malloc(M_WAITOK)
MFC after: 1 week Differential Revision: https://reviews.freebsd.org/D45852
This commit is contained in:
parent
701308ef40
commit
556cd18fb0
@ -2075,8 +2075,8 @@ mlx_user_command(struct mlx_softc *sc, struct mlx_usercommand *mu)
|
||||
goto out;
|
||||
}
|
||||
MLX_IO_UNLOCK(sc);
|
||||
if (((kbuf = malloc(mu->mu_datasize, M_DEVBUF, M_WAITOK)) == NULL) ||
|
||||
(error = copyin(mu->mu_buf, kbuf, mu->mu_datasize))) {
|
||||
kbuf = malloc(mu->mu_datasize, M_DEVBUF, M_WAITOK);
|
||||
if ((error = copyin(mu->mu_buf, kbuf, mu->mu_datasize))) {
|
||||
MLX_IO_LOCK(sc);
|
||||
goto out;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user