Commit 06f0e8f3 by Richard Kenner

(bitmap_operation): Reset CURRENT on deferred deletion.

From-SVN: r14525
parent 42976354
...@@ -384,7 +384,7 @@ bitmap_operation (to, from1, from2, operation) ...@@ -384,7 +384,7 @@ bitmap_operation (to, from1, from2, operation)
if (to == from1 || to == from2) if (to == from1 || to == from2)
{ {
delete_list = to->first; delete_list = to->first;
to->first = 0; to->first = to->current = 0;
} }
else else
bitmap_clear (to); bitmap_clear (to);
......
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