avoid deref of past the end iter

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@10203 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Lars Gullik Bjønnes 2005-07-15 11:14:08 +00:00
parent 83c44ca6e7
commit 6719871884
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2005-07-15 <lgb@tandberg.net>
* output_latex.C (TeXDeeper): get rid of potential dereferencing
of past the end iterator
2005-07-14 André Pönitz <poenitz@gmx.net> 2005-07-14 André Pönitz <poenitz@gmx.net>

View File

@ -75,7 +75,7 @@ TeXDeeper(Buffer const & buf,
os, texrow, runparams); os, texrow, runparams);
} }
} }
lyxerr[Debug::LATEX] << "TeXDeeper...done " << &*par << endl; lyxerr[Debug::LATEX] << "TeXDeeper...done " << endl;
return par; return par;
} }