mirror of
https://github.com/corda/corda.git
synced 2024-12-29 09:18:58 +00:00
fix thinko in memset() call
This commit is contained in:
parent
a29dc10313
commit
587fb18685
@ -1624,7 +1624,7 @@ run(Thread* t)
|
|||||||
default: abort(t);
|
default: abort(t);
|
||||||
}
|
}
|
||||||
|
|
||||||
memset(static_cast<object*>(instance) + (sizeof(object) * 2), 0,
|
memset(static_cast<uint8_t*>(array) + sizeof(object) + 4, 0,
|
||||||
c * factor);
|
c * factor);
|
||||||
|
|
||||||
push(t, array);
|
push(t, array);
|
||||||
|
Loading…
Reference in New Issue
Block a user