diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2023-12-03 21:23:03 +0100 |
---|---|---|
committer | Caolán McNamara <caolan.mcnamara@collabora.com> | 2023-12-04 10:46:28 +0100 |
commit | cdb180e767ebf2011414f4a5ba7213752474ee36 (patch) | |
tree | 5adb5060ee910d20256a66b6c336d72fdb5d0b55 /sdext | |
parent | beb0b57a638a2577d89ab5bdee6351008c5127ca (diff) |
cid#1546332 Using invalid iterator
and :
cid#1546327 Using invalid iterator
cid#1546289 Using invalid iterator
cid#1546284 Using invalid iterator
Change-Id: Ia0c8c69433a51fd356930f40f17f50774f244239
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/160279
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
Diffstat (limited to 'sdext')
-rw-r--r-- | sdext/source/pdfimport/tree/pdfiprocessor.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sdext/source/pdfimport/tree/pdfiprocessor.cxx b/sdext/source/pdfimport/tree/pdfiprocessor.cxx index 7967a74a67cf..bf590c544334 100644 --- a/sdext/source/pdfimport/tree/pdfiprocessor.cxx +++ b/sdext/source/pdfimport/tree/pdfiprocessor.cxx @@ -471,6 +471,7 @@ const FontAttributes& PDFIProcessor::getFont( sal_Int32 nFontId ) const IdToFontMap::const_iterator it = m_aIdToFont.find( nFontId ); if( it == m_aIdToFont.end() ) it = m_aIdToFont.find( 0 ); + assert(it != m_aIdToFont.end()); return it->second; } |