This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU Libtool".

The branch, master has been updated
       via  fe9c6440a352de1d7b2d148fd4393c669927ac82 (commit)
      from  4f2021de12cf4756b5d6b235560092e5cce0094c (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit fe9c6440a352de1d7b2d148fd4393c669927ac82
Author: Eric Blake <[EMAIL PROTECTED]>
Date:   Thu Apr 24 10:05:12 2008 -0600

    Fix bug in 2008-04-21 type improvements.
    
    * libltdl/ltdl.c (load_deplibs): Fix casting bug.
    
    Signed-off-by: Eric Blake <[EMAIL PROTECTED]>

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog      |    5 +++++
 libltdl/ltdl.c |    4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 9e97b71..737c5c8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2008-04-24  Eric Blake  <[EMAIL PROTECTED]>
+
+       Fix bug in 2008-04-21 type improvements.
+       * libltdl/ltdl.c (load_deplibs): Fix casting bug.
+
 2008-04-23  Michael Haubenwallner  <[EMAIL PROTECTED]>
 
        Use /nonexistent as destination for files not to be installed.
diff --git a/libltdl/ltdl.c b/libltdl/ltdl.c
index c8edcb4..a89c6bb 100644
--- a/libltdl/ltdl.c
+++ b/libltdl/ltdl.c
@@ -353,7 +353,7 @@ static int
 tryall_dlopen (lt_dlhandle *phandle, const char *filename,
               lt_dladvise advise, const lt_dlvtable *vtable)
 {
-  lt_dlhandle  handle          = handles;
+  lt_dlhandle  handle          = handles;
   const char * saved_error     = 0;
   int          errors          = 0;
 
@@ -921,7 +921,7 @@ load_deplibs (lt_dlhandle handle, char *deplibs)
       lt_dlhandle cur = handle;
       int      j = 0;
 
-      cur->deplibs = (lt_dlhandle) MALLOC (struct lt__handle, depcount);
+      cur->deplibs = MALLOC (lt_dlhandle, depcount);
       if (!cur->deplibs)
        goto cleanup_names;
 


hooks/post-receive
--
GNU Libtool


Reply via email to