Commit 2a8e278c by Richard Kenner

(move_by_pieces): Abort only if length positive at end.

From-SVN: r13242
parent 9f3c45fd
......@@ -1463,7 +1463,7 @@ move_by_pieces (to, from, len, align)
}
/* The code above should have handled everything. */
if (data.len != 0)
if (data.len > 0)
abort ();
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment