mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
Fix crash on recursive include (bug #8994)
The problem was that collectBibKeys() was called before the recursive include check was done. Now collectBibKeys() works even for recursive includes, and your get a proper error message if you try to change the file name to the parent file.
This commit is contained in:
parent
418d4c02d2
commit
52072b9b4e
@ -407,7 +407,9 @@ Buffer * InsetInclude::getChildBuffer() const
|
||||
{
|
||||
Buffer * childBuffer = loadIfNeeded();
|
||||
|
||||
// FIXME: recursive includes
|
||||
// FIXME RECURSIVE INCLUDE
|
||||
// This isn't sufficient, as the inclusion could be downstream.
|
||||
// But it'll have to do for now.
|
||||
return (childBuffer == &buffer()) ? 0 : childBuffer;
|
||||
}
|
||||
|
||||
@ -972,6 +974,11 @@ void InsetInclude::collectBibKeys(InsetIterator const & /*di*/) const
|
||||
Buffer * child = loadIfNeeded();
|
||||
if (!child)
|
||||
return;
|
||||
// FIXME RECURSIVE INCLUDE
|
||||
// This isn't sufficient, as the inclusion could be downstream.
|
||||
// But it'll have to do for now.
|
||||
if (child == &buffer())
|
||||
return;
|
||||
child->collectBibKeys();
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user