Commit 6d629044 authored by Fabian Maurer's avatar Fabian Maurer Committed by Alexandre Julliard

riched20: In ME_ProtectPartialTableDeletion properly set out parameter (cppcheck).

parent 8c944f7a
...@@ -400,7 +400,7 @@ void ME_ProtectPartialTableDeletion(ME_TextEditor *editor, ME_Cursor *c, int *nC ...@@ -400,7 +400,7 @@ void ME_ProtectPartialTableDeletion(ME_TextEditor *editor, ME_Cursor *c, int *nC
} }
} }
if (*nChars < 0) if (*nChars < 0)
nChars = 0; *nChars = 0;
} }
} }
......
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