mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-22 21:21:32 +00:00
Fix uninitialized var introduced in http://www.lyx.org/trac/changeset/18966
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18976 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
ff6baf9a44
commit
b8b66e8278
@ -412,7 +412,7 @@ namespace {
|
||||
return false;
|
||||
|
||||
// read value
|
||||
bool legalChar;
|
||||
bool legalChar = true;
|
||||
while (ifs && !isSpace(ch) &&
|
||||
delimChars.find(ch) == docstring::npos &&
|
||||
(legalChar = illegalChars.find(ch) == docstring::npos)
|
||||
|
Loading…
Reference in New Issue
Block a user