]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* libltdl/ltdl.c (foreach_dirinpath): argz_len should be a size_t.
authorGary V. Vaughan <gary@gnu.org>
Thu, 6 Sep 2001 23:16:04 +0000 (23:16 +0000)
committerGary V. Vaughan <gary@gnu.org>
Thu, 6 Sep 2001 23:16:04 +0000 (23:16 +0000)
Reported by Albert Chin <china@thewrittenword.com>

ChangeLog
libltdl/ltdl.c

index 1637940710f3f9893de52a8932704aaf5d71d029..a61b78ae4e8d4c1960d0bd990ffd52e4318131e0 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2001-09-07  Gary V. Vaughan  <gary@gnu.org>
+
+       * libltdl/ltdl.c (foreach_dirinpath): argz_len should be a size_t.
+       Reported by Albert Chin <china@thewrittenword.com>
+
 2001-09-06  Gary V. Vaughan  <gary@gnu.org>
 
        * libtool.m4 (AC_LIBTOOL_PROG_LD_SHLIBS) [solaris*]: Typo. s/GXX/GCC/.
index e6830c4b6722b747dc984f1e93c6b63e4ad137a1..c47e31867690846cc501de423410b2d29bd3e5a4 100644 (file)
@@ -2133,13 +2133,13 @@ foreach_dirinpath (search_path, base_name, func, data1, data2)
      lt_ptr data1;
      lt_ptr data2;
 {
-  int  result          = 0;
-  int  filenamesize    = 0;
-  int  lenbase         = LT_STRLEN (base_name);
-  int  argz_len        = 0;
-  char *argz           = 0;
-  char *filename       = 0;
-  char *canonical      = 0;
+  int   result         = 0;
+  int   filenamesize   = 0;
+  int   lenbase        = LT_STRLEN (base_name);
+  size_t argz_len      = 0;
+  char * argz          = 0;
+  char * filename      = 0;
+  char * canonical     = 0;
 
   LT_DLMUTEX_LOCK ();