compositor: Load modules with RTLD_NOW so we get missing symbols up front
authorKristian Høgsberg <krh@bitplanet.net>
Thu, 26 Jul 2012 15:39:26 +0000 (11:39 -0400)
committerKristian Høgsberg <krh@bitplanet.net>
Thu, 26 Jul 2012 15:39:26 +0000 (11:39 -0400)
Otherwise we have no way to clean up when we hit something undefined.

src/compositor.c

index ed887a4..746ff85 100644 (file)
@@ -3336,7 +3336,7 @@ load_module(const char *name, const char *entrypoint, void **handle)
                snprintf(path, sizeof path, "%s", name);
 
        weston_log("Loading module '%s'\n", path);
-       module = dlopen(path, RTLD_LAZY);
+       module = dlopen(path, RTLD_NOW);
        if (!module) {
                weston_log("Failed to load module: %s\n", dlerror());
                return NULL;