mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-23 13:31:49 +00:00
* InsetMathHull (numbered):
- prevent NULL pointer (bug 5688). git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@28319 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
9adde5af52
commit
66e455ba29
@ -533,6 +533,11 @@ void InsetMathHull::numbered(row_type row, bool num)
|
||||
label_[row] = 0;
|
||||
// We need an update of the Buffer reference cache.
|
||||
// This is achieved by updateLabels().
|
||||
if (!buffer_) {
|
||||
// The buffer is set at the end of readInset
|
||||
// when parsing the inset, buffer_ is 0.
|
||||
return;
|
||||
}
|
||||
buffer().updateLabels();
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user