mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Fix two potential crashes due to invalid static_casts.
An example of a fatal function call is "gotoInset(this, NOTE_CODE, true)". Luckily we don't check for the contents in LFUN_NOTE_NEXT. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@35860 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
48a8d24328
commit
faab3618ae
@ -107,10 +107,7 @@ T * getInsetByCode(Cursor const & cur, InsetCode code)
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
bool findInset(DocIterator & dit, vector<InsetCode> const & codes,
|
||||
bool same_content);
|
||||
|
||||
/// Note that comparing contents can only be used for InsetCommand
|
||||
bool findNextInset(DocIterator & dit, vector<InsetCode> const & codes,
|
||||
docstring const & contents)
|
||||
{
|
||||
@ -118,15 +115,17 @@ bool findNextInset(DocIterator & dit, vector<InsetCode> const & codes,
|
||||
|
||||
while (tmpdit) {
|
||||
Inset const * inset = tmpdit.nextInset();
|
||||
if (inset
|
||||
&& std::find(codes.begin(), codes.end(), inset->lyxCode()) != codes.end()
|
||||
&& (contents.empty() ||
|
||||
//FIXME: This static_cast seems very dangerous. Does this
|
||||
// mean that if contents is not empty, we must only be
|
||||
// looking for InsetCommand's ??
|
||||
static_cast<InsetCommand const *>(inset)->getFirstNonOptParam() == contents)) {
|
||||
dit = tmpdit;
|
||||
return true;
|
||||
if (inset) {
|
||||
bool const valid_code = std::find(codes.begin(), codes.end(),
|
||||
inset->lyxCode()) != codes.end();
|
||||
InsetCommand const * ic = inset->asInsetCommand();
|
||||
bool const same_or_no_contents = contents.empty()
|
||||
|| (ic && (ic->getFirstNonOptParam() == contents));
|
||||
|
||||
if (valid_code && same_or_no_contents) {
|
||||
dit = tmpdit;
|
||||
return true;
|
||||
}
|
||||
}
|
||||
tmpdit.forwardInset();
|
||||
}
|
||||
@ -136,6 +135,7 @@ bool findNextInset(DocIterator & dit, vector<InsetCode> const & codes,
|
||||
|
||||
|
||||
/// Looks for next inset with one of the given codes.
|
||||
/// Note that same_content can only be used for InsetCommand
|
||||
bool findInset(DocIterator & dit, vector<InsetCode> const & codes,
|
||||
bool same_content)
|
||||
{
|
||||
@ -145,14 +145,14 @@ bool findInset(DocIterator & dit, vector<InsetCode> const & codes,
|
||||
if (!tmpdit)
|
||||
return false;
|
||||
|
||||
if (same_content) {
|
||||
Inset const * inset = tmpdit.nextInset();
|
||||
if (inset
|
||||
&& std::find(codes.begin(), codes.end(), inset->lyxCode()) != codes.end()) {
|
||||
//FIXME: This static_cast seems very dangerous. Does this
|
||||
// mean that if contents is not empty, we must only be
|
||||
// looking for InsetCommand's ??
|
||||
contents = static_cast<InsetCommand const *>(inset)->getFirstNonOptParam();
|
||||
Inset const * inset = tmpdit.nextInset();
|
||||
if (same_content && inset) {
|
||||
InsetCommand const * ic = inset->asInsetCommand();
|
||||
if (ic) {
|
||||
bool const valid_code = std::find(codes.begin(), codes.end(),
|
||||
ic->lyxCode()) != codes.end();
|
||||
if (valid_code)
|
||||
contents = ic->getFirstNonOptParam();
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user