Commit 90117bd1 authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

usp10: Added missing break (Coverity).

parent 1cefdf3f
...@@ -97,6 +97,7 @@ void BREAK_line(const WCHAR *chars, int count, const SCRIPT_ANALYSIS *sa, SCRIPT ...@@ -97,6 +97,7 @@ void BREAK_line(const WCHAR *chars, int count, const SCRIPT_ANALYSIS *sa, SCRIPT
break; break;
case b_CM: case b_CM:
la[i].fCharStop = FALSE; la[i].fCharStop = FALSE;
break;
} }
} }
...@@ -111,8 +112,10 @@ void BREAK_line(const WCHAR *chars, int count, const SCRIPT_ANALYSIS *sa, SCRIPT ...@@ -111,8 +112,10 @@ void BREAK_line(const WCHAR *chars, int count, const SCRIPT_ANALYSIS *sa, SCRIPT
case b_SG: case b_SG:
case b_XX: case b_XX:
break_class[i] = b_AL; break_class[i] = b_AL;
break;
case b_CJ: case b_CJ:
break_class[i] = b_NS; break_class[i] = b_NS;
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