diff options
author | Aaron Watry <[email protected]> | 2013-11-08 13:45:05 -0600 |
---|---|---|
committer | Carl Worth <[email protected]> | 2014-01-02 15:57:41 -0800 |
commit | b2ea582679459f593c15daabf9c0563dcdb768c1 (patch) | |
tree | 290f0160cd0df66a66833d98d9379c9f2c9d4244 /src | |
parent | 0057a2b0e78bd6a0940a4ac1817522b6258ca60d (diff) |
pipe_loader/sw: close dev->lib when initialization fails
Prevents a memory leak.
Reviewed-by: Tom Stellard <[email protected]>
CC: "10.0" <[email protected]>
(cherry picked from commit a7653c19a3b1adae162864587a7ab1c17ab256e6)
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/auxiliary/pipe-loader/pipe_loader_sw.c | 5 |
1 files changed, 4 insertions, 1 deletions
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); } |