(copy_node): Copy the excess bytes--don't clear them.

From-SVN: r2551
This commit is contained in:
Richard Stallman 1992-10-22 12:04:02 +00:00
parent ea7273ae02
commit 11b459cf9a
1 changed files with 1 additions and 1 deletions

View File

@ -981,7 +981,7 @@ copy_node (node)
((int *) t)[i] = ((int *) node)[i];
/* Clear any extra bytes. */
for (i = length / sizeof (int) * sizeof (int); i < length; i++)
((char *) t)[i] = 0;
((char *) t)[i] = ((char *) node)[i];
TREE_CHAIN (t) = 0;