rt: Increase the tolerance of the vector range sanity check
This commit is contained in:
parent
e27279d7db
commit
b39c7c4c45
@ -71,7 +71,7 @@ class irc : public shape::data<irc,shape::ptr> {
|
||||
return; // There can't be any outbound pointers from this.
|
||||
|
||||
std::pair<uint8_t *,uint8_t *> data_range(get_vec_data_range(dp));
|
||||
if (data_range.second - data_range.first > 10000)
|
||||
if (data_range.second - data_range.first > 100000)
|
||||
abort(); // FIXME: Temporary sanity check.
|
||||
|
||||
irc sub(*this, data_range.first);
|
||||
|
Loading…
x
Reference in New Issue
Block a user