From Steve Ellcey <sje@cup.hp.com>:

* libltdl/ltdl.c (foreach_dirinpath): Free unassigned pointer
fix for `canonical'.
This commit is contained in:
Gary V. Vaughan 2001-07-25 02:52:36 +00:00
parent 0a2043ca0e
commit be59bd4ad3
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2001-07-25 Gary V. Vaughan <gary@gnu.org>
From Steve Ellcey <sje@cup.hp.com>:
* libltdl/ltdl.c (foreach_dirinpath): Free unassigned pointer
fix for `canonical'.
2001-07-23 Robert Boehne <rboehne@ricardo-us.com>
* libtool.m4 (AC_LIBTOOL_LANG_CXX_CONFIG, AC_LIBTOOL_PROG_LD_SHLIBS)

View File

@ -1718,7 +1718,8 @@ foreach_dirinpath (search_path, base_name, func, data1, data2)
int filenamesize = 0;
int lenbase = LT_DLSTRLEN (base_name);
char *filename = 0;
char *canonical, *next;
char *canonical = 0;
char *next;
LT_DLMUTEX_LOCK ();