From: Aaron Watry Date: Fri, 8 Nov 2013 19:45:05 +0000 (-0600) Subject: pipe_loader/sw: close dev->lib when initialization fails X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a7653c19a3b1adae162864587a7ab1c17ab256e6;p=mesa.git pipe_loader/sw: close dev->lib when initialization fails Prevents a memory leak. Reviewed-by: Tom Stellard CC: "10.0" --- diff --git a/src/gallium/auxiliary/pipe-loader/pipe_loader_sw.c b/src/gallium/auxiliary/pipe-loader/pipe_loader_sw.c index c2b78c636a7..382e116fd06 100644 --- a/src/gallium/auxiliary/pipe-loader/pipe_loader_sw.c +++ b/src/gallium/auxiliary/pipe-loader/pipe_loader_sw.c @@ -95,8 +95,11 @@ pipe_loader_sw_create_screen(struct pipe_loader_device *dev, return NULL; init = (void *)util_dl_get_proc_address(sdev->lib, "swrast_create_screen"); - if (!init) + if (!init){ + util_dl_close(sdev->lib); + sdev->lib = NULL; return NULL; + } return init(sdev->ws); }