Kaydet (Commit) 8ce6e313 authored tarafından Caolán McNamara's avatar Caolán McNamara

a high surrogate can result in an empty output string from a non-empty input

Change-Id: Id544bdf639151ff3d9a164c52977acc6022cede9
üst 2eea698f
...@@ -8590,7 +8590,7 @@ bool PDFWriterImpl::registerGlyphs( int nGlyphs, ...@@ -8590,7 +8590,7 @@ bool PDFWriterImpl::registerGlyphs( int nGlyphs,
else else
{ {
OString aChar(&cChar, 1, RTL_TEXTENCODING_MS_1252); OString aChar(&cChar, 1, RTL_TEXTENCODING_MS_1252);
cChar = ((sal_Ucs)aChar[0]) & 0x00ff; cChar = !aChar.isEmpty() ? (static_cast<sal_Ucs>(aChar[0]) & 0x00ff) : 0;
} }
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment