]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* libltdl/libltdl/lt_error.h (LT_ERROR_LEN_MAX): Adjust, to fix
authorEric Blake <ebb9@byu.net>
Wed, 9 May 2007 12:27:00 +0000 (12:27 +0000)
committerEric Blake <ebb9@byu.net>
Wed, 9 May 2007 12:27:00 +0000 (12:27 +0000)
buffer overflow in previous patch.

ChangeLog
libltdl/libltdl/lt_error.h

index 783e80ab231ae55d47207c9b541269b9df872458..f493a8bca7b2ee27ccef52039dc1d63f9cf1a6cc 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2007-05-09  Eric Blake  <ebb9@byu.net>
+
+       * libltdl/libltdl/lt_error.h (LT_ERROR_LEN_MAX): Adjust, to fix
+       buffer overflow in previous patch.
+
 2007-05-09  Gary V. Vaughan  <gary@gnu.org>
 
        * tests/lt_dladvise.at: Commit missing file from below.
index dbb462dbf41909ff26043df2dad9f6eee11ee0cf..e789b3a4ec381271c8d52e157f9874872b802984 100644 (file)
@@ -1,6 +1,6 @@
 /* lt_error.h -- error propogation interface
 
-   Copyright (C) 1999, 2000, 2001, 2004 Free Software Foundation, Inc.
+   Copyright (C) 1999, 2000, 2001, 2004, 2007 Free Software Foundation, Inc.
    Written by Thomas Tanner, 1999
 
    NOTE: The canonical source of this file is maintained with the
@@ -73,7 +73,7 @@ enum {
 };
 
 /* Should be max of the error string lengths above (plus one for C++) */
-#define LT_ERROR_LEN_MAX (36)
+#define LT_ERROR_LEN_MAX (41)
 
 /* These functions are only useful from inside custom module loaders. */
 LT_SCOPE int   lt_dladderror   (const char *diagnostic);