When I use Find occurrences of ... , it will crash sometime, but not always. I attached the screenshot.
[attachment deleted by admin]
Code::Blocks version?
Current SVN Code
bool Contains(int val) const {
assert(val >= 0);
if (val < 0) return false;
return (val < size) ? bset[val] : valueAfter;
}
Tim S.
Quote from: stahta01 on June 13, 2012, 12:33:04 AM
bool Contains(int val) const {
assert(val >= 0);
if (val < 0) return false;
return (val < size) ? bset[val] : valueAfter;
}
IIRC this was a bug in scintilla, but I cannot upgrade to a more recent one as this would break bookmarks for the moment.
rev 8024 and other nightly builds.
Quote from: MortenMacFly on June 13, 2012, 07:16:01 AM
Quote from: stahta01 on June 13, 2012, 12:33:04 AM
bool Contains(int val) const {
assert(val >= 0);
if (val < 0) return false;
return (val < size) ? bset[val] : valueAfter;
}
IIRC this was a bug in scintilla, but I cannot upgrade to a more recent one as this would break bookmarks for the moment.
Hope that it will be solved asap , because this bug will cause cb crash . the files which are changed but not saved will lose the changes.