Commit 0db7cb60 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

riched20: Preserve higher bits of tabstop values (Coverity).

Bits 24-31 are reserved for tab alignment and tab leader style, writer supports thatl. Signed-off-by: 's avatarNikolay Sivov <nsivov@codeweavers.com> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent 8416bb04
...@@ -943,7 +943,7 @@ void ME_RTFTblAttrHook(RTF_Info *info) ...@@ -943,7 +943,7 @@ void ME_RTFTblAttrHook(RTF_Info *info)
ME_DisplayItem *para = info->editor->pCursors[0].pPara; ME_DisplayItem *para = info->editor->pCursors[0].pPara;
PARAFORMAT2 *pFmt = para->member.para.pFmt; PARAFORMAT2 *pFmt = para->member.para.pFmt;
pFmt->rgxTabs[cellNum] &= ~0x00FFFFFF; pFmt->rgxTabs[cellNum] &= ~0x00FFFFFF;
pFmt->rgxTabs[cellNum] = 0x00FFFFFF & info->rtfParam; pFmt->rgxTabs[cellNum] |= 0x00FFFFFF & info->rtfParam;
} }
info->tableDef->numCellsDefined++; info->tableDef->numCellsDefined++;
break; break;
......
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