We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a550bc6 commit d62bc06Copy full SHA for d62bc06
src/ops.c
@@ -2193,7 +2193,8 @@ op_replace(oap, c)
2193
else
2194
{
2195
/* Replacing with \r or \n means splitting the line. */
2196
- after_p = alloc_check((unsigned)oldlen + 1 + n - STRLEN(newp));
+ after_p = alloc_check(
2197
+ (unsigned)(oldlen + 1 + n - STRLEN(newp)));
2198
if (after_p != NULL)
2199
STRMOVE(after_p, oldp);
2200
}
src/version.c
@@ -738,6 +738,8 @@ static char *(features[]) =
738
739
static int included_patches[] =
740
{ /* Add new patch number below this line */
741
+/**/
742
+ 87,
743
/**/
744
86,
745
0 commit comments