aboutsummaryrefslogtreecommitdiff
path: root/binutils
diff options
context:
space:
mode:
authorChristopher Faylor <me+cygwin@cgf.cx>2003-07-05 13:49:50 +0000
committerChristopher Faylor <me+cygwin@cgf.cx>2003-07-05 13:49:50 +0000
commitff6b622203384128d61b420dae3be9fff78d9b54 (patch)
treeeb8bfe824bdb9be168d70c56006a19b36369645c /binutils
parentbf7a6389e81782655f363fbeda9b5d16d5f6fdac (diff)
downloadbinutils-ff6b622203384128d61b420dae3be9fff78d9b54.zip
binutils-ff6b622203384128d61b420dae3be9fff78d9b54.tar.gz
binutils-ff6b622203384128d61b420dae3be9fff78d9b54.tar.bz2
* dlltool.c (prefix_encode): Use a fixed length for alpha.
Diffstat (limited to 'binutils')
-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 2617875..1783286 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 544602b..ffbcd28 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);