rt: Increase the tolerance of the vector range sanity check

This commit is contained in:
Patrick Walton 2011-09-20 19:13:45 -07:00
parent e27279d7db
commit b39c7c4c45

View file

@ -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);