(copy_node): Copy the excess bytes--don't clear them.
From-SVN: r2551
This commit is contained in:
parent
ea7273ae02
commit
11b459cf9a
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user