Daniel Lehman wrote:
@@ -1949,7 +1949,7 @@ basic_string_char* __thiscall basic_string_char_replace_cstr_len(basic_string_ch
- if(off+len > this->size) + if(off+len < off || off+len > this->size) len = this->size-off;
Wouldn't this be more elegant:
if(num > this->size-pos) num = this->size-pos; ?
Also, you may have missed the similar case in basic_string_char_compare_substr_cstr_len (which uses 'pos' and 'num' rather than 'off' and 'len').