* libltdl/ltdl.c (load_deplibs): Fix casting bug.
Signed-off-by: Eric Blake <ebb9@byu.net>
+2008-04-24 Eric Blake <ebb9@byu.net>
+
+ Fix bug in 2008-04-21 type improvements.
+ * libltdl/ltdl.c (load_deplibs): Fix casting bug.
+
2008-04-23 Michael Haubenwallner <michael.haubenwallner@salomon.at>
Use /nonexistent as destination for files not to be installed.
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;
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;