<html><body><div style="color:#000; background-color:#fff; font-family:times new roman, new york, times, serif;font-size:12pt">Hi<br><br>In commit "Reduce unnecessary memory copies by ByteVector", in function "containsAt(...)" there was a change made to the sanity checking.<br><br>Does this NOT break the API ?<br><br>The code ... (messed by yahoo)<br>  // do some sanity checking -- all of these things are needed for the search to be valid<br><br>-  if(patternLength > size() || offset >= size() || patternOffset >= pattern.size() || patternLength == 0)<br>+  if(offset + patternLength > size() || patternOffset >= pattern.size() || patternLength == 0)<br><br>-Enjoy<br>fh : )_~<br><div><br></div></div></body></html>