From: José Fonseca Date: Thu, 8 Apr 2010 09:36:16 +0000 (+0100) Subject: util: Don't call util_dl_close(library) when util_format_s3tc_init is successful." X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d2f8162f91e797af5dbccec3f76a7c238e27f206;p=mesa.git util: Don't call util_dl_close(library) when util_format_s3tc_init is successful." Otherwise the library will be unloaded and function pointers become invalid. This reverts commit bc2bc0306e4dd8c56bd66a8aabf2433f6689653d. --- diff --git a/src/gallium/auxiliary/util/u_format_s3tc.c b/src/gallium/auxiliary/util/u_format_s3tc.c index 7ebc9f3c437..d1f45d751fa 100644 --- a/src/gallium/auxiliary/util/u_format_s3tc.c +++ b/src/gallium/auxiliary/util/u_format_s3tc.c @@ -151,7 +151,6 @@ 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); }