From 08eaf5dabb95cdfa6569427975c2ac2da4e25e68 Mon Sep 17 00:00:00 2001 From: scottl Date: Mon, 1 Mar 2004 21:45:49 +0000 Subject: Change another pointer name that was missed in the previous commit. Spotted by: njl --- sys/dev/mlx/mlx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/dev') diff --git a/sys/dev/mlx/mlx.c b/sys/dev/mlx/mlx.c index ea53741..4862323 100644 --- a/sys/dev/mlx/mlx.c +++ b/sys/dev/mlx/mlx.c @@ -1556,7 +1556,7 @@ mlx_enquire(struct mlx_softc *sc, int command, size_t bufsize, void (* complete) /* we got an error, and we allocated a result */ if ((error != 0) && (result != NULL)) { free(result, M_DEVBUF); - mc->mc_data = NULL; + result = NULL; } return(result); } -- cgit v1.1