]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* libltdl/loaders/shl_load.c (get_vtable): Typo.
authorGary V. Vaughan <gary@gnu.org>
Mon, 6 Sep 2004 00:51:38 +0000 (00:51 +0000)
committerGary V. Vaughan <gary@gnu.org>
Mon, 6 Sep 2004 00:51:38 +0000 (00:51 +0000)
ChangeLog
libltdl/loaders/shl_load.c

index 6905b3973009f20ba21b7de82460959210c3c2ed..97ca965ba311bb6e94d84d0dd697a1a4708b8b30 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2004-09-06  Gary V. Vaughan  <gary@gnu.org>
+
+       * libltdl/loaders/shl_load.c (get_vtable): Typo.
+
 2004-09-06  Albert Chin-A-Young  <china@thewrittenword.com>
 
        Hopefully, passing unrecognised compiler arguments through
index cfd9f749476e347f8b900e9bdcadacae1f0eaa74..d423a19a6dd3cf0a32f21119111eff937f7d4d1c 100644 (file)
@@ -59,7 +59,7 @@ get_vtable (lt_user_data loader_data)
       vtable = lt__zalloc (sizeof *vtable);
     }
 
-  if (table && !vtable->name)
+  if (vtable && !vtable->name)
     {
       vtable->name             = "lt_shl_load";
       vtable->module_open      = vm_open;