From d1fe26a62862f4e47a799222dca1bc1dc14ca4af Mon Sep 17 00:00:00 2001 From: Eric Engestrom Date: Sat, 30 Jul 2016 01:35:39 +0100 Subject: [PATCH] gallium/util: fix resource leak MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit CovID: 401540 Signed-off-by: Eric Engestrom Signed-off-by: Marek Olšák Reviewed-by: Edward O'Callaghan --- src/gallium/auxiliary/util/u_format_s3tc.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/gallium/auxiliary/util/u_format_s3tc.c b/src/gallium/auxiliary/util/u_format_s3tc.c index 8c4f2150bef..1ed4336d659 100644 --- a/src/gallium/auxiliary/util/u_format_s3tc.c +++ b/src/gallium/auxiliary/util/u_format_s3tc.c @@ -157,6 +157,8 @@ util_format_s3tc_init(void) util_format_dxt5_rgba_fetch = (util_format_dxtn_fetch_t)fetch_2d_texel_rgba_dxt5; util_format_dxtn_pack = (util_format_dxtn_pack_t)tx_compress_dxtn; util_format_s3tc_enabled = TRUE; + + util_dl_close(library); } -- 2.30.2