diff options
author | Ken Raeburn <raeburn@cygnus> | 1993-01-07 10:48:49 +0000 |
---|---|---|
committer | Ken Raeburn <raeburn@cygnus> | 1993-01-07 10:48:49 +0000 |
commit | 4b0dd31c9f7606f6675a462320e047b56ad7412c (patch) | |
tree | 3b9ab15f71a67a73f362700d3af58f3881926a47 /gas/bignum-copy.c | |
parent | 6218894f95612e7355412334080922e735063da6 (diff) | |
download | gdb-4b0dd31c9f7606f6675a462320e047b56ad7412c.zip gdb-4b0dd31c9f7606f6675a462320e047b56ad7412c.tar.gz gdb-4b0dd31c9f7606f6675a462320e047b56ad7412c.tar.bz2 |
Lots of changes from Eric Youngdale, mostly for VAX and VMS support.
Also, fix another goof in read.c, which caused ".data" not to work...
Diffstat (limited to 'gas/bignum-copy.c')
-rw-r--r-- | gas/bignum-copy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gas/bignum-copy.c b/gas/bignum-copy.c index 9ec9200..af221aa 100644 --- a/gas/bignum-copy.c +++ b/gas/bignum-copy.c @@ -66,7 +66,7 @@ bignum_copy (in, in_length, out, out_length) if (out_length > in_length) { - memset ((char *) (out + out_length), + memset ((char *) (out + in_length), '\0', (out_length - in_length) << LITTLENUM_SHIFT); } |