mirror of
git://git.savannah.gnu.org/libtool.git
synced 2025-02-17 15:10:02 +08:00
From Steve Ellcey <sje@cup.hp.com>:
* libltdl/ltdl.c (foreach_dirinpath): Free unassigned pointer fix for `canonical'.
This commit is contained in:
parent
0a2043ca0e
commit
be59bd4ad3
@ -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)
|
||||
|
@ -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 ();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user