summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--binutils/ChangeLog4
-rw-r--r--binutils/dlltool.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog
index 26178750ec4..1783286bdb6 100644
--- a/binutils/ChangeLog
+++ b/binutils/ChangeLog
@@ -1,3 +1,7 @@
+2003-07-05 Christopher Faylor <cgf@redhat.com>
+
+ * dlltool.c (prefix_encode): Use a fixed length for alpha.
+
2003-07-04 Christopher Faylor <cgf@redhat.com>
* dlltool.c (prefix_encode): New function. Encode temp file prefix
diff --git a/binutils/dlltool.c b/binutils/dlltool.c
index 544602b028c..ffbcd2861cc 100644
--- a/binutils/dlltool.c
+++ b/binutils/dlltool.c
@@ -753,7 +753,7 @@ static void inform
static char *
prefix_encode PARAMS ((char *start, unsigned code))
{
- static char alpha[] = "abcdefghijklmnopqrstuvwxyz";
+ static char alpha[26] = "abcdefghijklmnopqrstuvwxyz";
static char buf[32];
char *p;
strcpy (buf, start);