[PATCH v2 5/8] riched20: Guard paragraph wrapping against special case where type is diTextStart.

Sergio Gómez Del Real sdelreal at codeweavers.com
Thu Nov 29 07:44:52 CST 2018


Signed-off-by: Sergio Gómez Del Real <sdelreal at codeweavers.com>
---
 dlls/riched20/para.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/dlls/riched20/para.c b/dlls/riched20/para.c
index 85703b50cf..ae2227e235 100644
--- a/dlls/riched20/para.c
+++ b/dlls/riched20/para.c
@@ -596,7 +596,9 @@ ME_DisplayItem *ME_SplitParagraph(ME_TextEditor *editor, ME_DisplayItem *run,
   }
 
   /* force rewrap of the */
-  mark_para_rewrap(editor, run_para->member.para.prev_para);
+  if (run_para->member.para.prev_para->type == diParagraph)
+    mark_para_rewrap(editor, run_para->member.para.prev_para);
+
   mark_para_rewrap(editor, new_para->member.para.prev_para);
 
   /* we've added the end run, so we need to modify nCharOfs in the next paragraphs */
-- 
2.17.1




More information about the wine-devel mailing list