]> git.cworth.org Git - fips/blobdiff - dlwrap.c
util-x11: Rework init_window interface to accept XVisualInfo
[fips] / dlwrap.c
index 9f623da549b3e74c2db2a261caddbe95e9e00081..69ffbd16fc6dde0dace5289aba1986f900ca5725 100644 (file)
--- a/dlwrap.c
+++ b/dlwrap.c
@@ -41,10 +41,18 @@ void *
 dlopen (const char *filename, int flag)
 {
        Dl_info info;
+       void *ret;
+
+       /* Before deciding whether to redirect this dlopen to our own
+        * library, we call the real dlopen. This assures that any
+        * expected side-effects from loading the intended library are
+        * resolved. Below, we may still return a handle pointing to
+        * our own library, and not what is opened here. */
+       ret = dlwrap_real_dlopen (filename, flag);
 
        /* Not libGL, so just return real dlopen */
        if (STRNCMP_LITERAL (filename, "libGL.so"))
-               return dlwrap_real_dlopen (filename, flag);
+               return ret;
 
        /* Otherwise, for all libGL lookups we redirectl dlopens to
         * our own library. If we've resolved libfips_handle before,