riched20: Remove dead assignment (Clang).

This commit is contained in:
Frédéric Delanoy 2011-07-06 10:34:52 +02:00 committed by Alexandre Julliard
parent fccb44027d
commit 7ed4f20305
1 changed files with 0 additions and 1 deletions

View File

@ -1199,7 +1199,6 @@ static ME_DisplayItem *ME_FindRunInRow(ME_TextEditor *editor, ME_DisplayItem *pR
ME_DisplayItem *pNext, *pLastRun; ME_DisplayItem *pNext, *pLastRun;
pNext = ME_FindItemFwd(pRow, diRunOrStartRow); pNext = ME_FindItemFwd(pRow, diRunOrStartRow);
assert(pNext->type == diRun); assert(pNext->type == diRun);
pLastRun = pNext;
if (pbCaretAtEnd) *pbCaretAtEnd = FALSE; if (pbCaretAtEnd) *pbCaretAtEnd = FALSE;
if (pOffset) *pOffset = 0; if (pOffset) *pOffset = 0;
do { do {