summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/ops.c3
-rw-r--r--src/version.c2
2 files changed, 4 insertions, 1 deletions
diff --git a/src/ops.c b/src/ops.c
index 0aebfa14f4..bf65191899 100644
--- a/src/ops.c
+++ b/src/ops.c
@@ -2193,7 +2193,8 @@ op_replace(oap, c)
else
{
/* Replacing with \r or \n means splitting the line. */
- after_p = alloc_check((unsigned)oldlen + 1 + n - STRLEN(newp));
+ after_p = alloc_check(
+ (unsigned)(oldlen + 1 + n - STRLEN(newp)));
if (after_p != NULL)
STRMOVE(after_p, oldp);
}
diff --git a/src/version.c b/src/version.c
index f4555c7261..9b78b171dd 100644
--- a/src/version.c
+++ b/src/version.c
@@ -739,6 +739,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 87,
+/**/
86,
/**/
85,