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...
This commit is contained in:
Ken Raeburn
1993-01-07 10:48:49 +00:00
parent 6218894f95
commit 4b0dd31c9f
5 changed files with 148 additions and 44 deletions

View File

@@ -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);
}