diff --git a/ChangeLog b/ChangeLog index e4c5f9a6..74377862 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,7 +1,17 @@ +1999-02-04 Alexandre Oliva + + * libltdl/ltdl.c (find_module): initialize filename if dir is NULL + Reported by Godmar Back + +1999-02-04 Godmar Back + + * libltdl/ltdl.c (lt_dlopenext): missing space for terminator when + allocating memory for shlib_ext + 1999-02-03 Alexandre Oliva - * ltdl.c (lt_dlopenext): tmp would be trashed if shlib_ext was - longer than 3 characters + * libltdl/ltdl.c (lt_dlopenext): tmp would be trashed if shlib_ext + was longer than 3 characters 1999-02-02 Gary V. Vaughan diff --git a/libltdl/ltdl.c b/libltdl/ltdl.c index 1413741b..f53f50bf 100644 --- a/libltdl/ltdl.c +++ b/libltdl/ltdl.c @@ -840,6 +840,8 @@ find_module (handle, dir, libdir, dlname, old_name, installed) } if (dir) strcpy(filename, dir); + else + *filename = 0; strcat(filename, objdir); strcat(filename, dlname); @@ -857,6 +859,8 @@ find_module (handle, dir, libdir, dlname, old_name, installed) + strlen(dlname) + 1); if (dir) strcpy(filename, dir); + else + *filename = 0; strcat(filename, dlname); ret = tryall_dlopen(handle, filename) == 0; free(filename); @@ -1240,7 +1244,7 @@ lt_dlopenext (filename) /* try "filename.EXT" */ if (strlen(shlib_ext) > 3) { free(tmp); - tmp = (char*) malloc(len + strlen(shlib_ext)); + tmp = (char*) malloc(len + strlen(shlib_ext) + 1); if (!tmp) { last_error = memory_error; return 0;