Kaydet (Commit) 3aa58661 authored tarafından Caolán McNamara's avatar Caolán McNamara

fix wrong test for end of field

regression since 2564c5bb

Change-Id: I40741875e873d64a682468616700d25904302878
üst bf205162
......@@ -3615,7 +3615,8 @@ void SwWW8ImplReader::Read_FldVanish( sal_uInt16, const sal_uInt8*, short nLen )
for (;;)
{
nFnd = sFieldName.indexOf(0x15);
if (nFnd<0)
//found field end, we can stop now
if (nFnd != -1)
break;
OUString sTemp;
nFieldLen = pSBase->WW8ReadString( *pStrm, sTemp,
......
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