Call dload_finalize_file, not dld_finalize_file. Oops.
authorTaylor R Campbell <campbell@mumble.net>
Mon, 3 Nov 2014 20:43:34 +0000 (20:43 +0000)
committerTaylor R Campbell <campbell@mumble.net>
Mon, 3 Nov 2014 20:43:34 +0000 (20:43 +0000)
src/microcode/pruxdld.c

index 377755e6171ce9d49b69b0c41f2efdfc73d478bb..ca92f1522f7a538526e605bada45d76d0e290114 100644 (file)
@@ -149,7 +149,7 @@ dld_load (const char * path)
 static void
 dld_finalize (void * handle)
 {
-  void * address = (dlsym (handle, "dld_finalize_file"));
+  void * address = (dlsym (handle, "dload_finalize_file"));
   if (address != 0)
     {
       void (*finalize) (void) = address;