Remove a stray abort.

pull/1798/head
Nicholas Marriott 2019-06-15 07:45:41 +01:00
parent 08f55414e1
commit 748633c887
1 changed files with 0 additions and 1 deletions

View File

@ -2409,7 +2409,6 @@ input_osc_52(struct input_ctx *ictx, const char *p)
outlen = 4 * ((len + 2) / 3) + 1;
out = xmalloc(outlen);
if ((outlen = b64_ntop(buf, len, out, outlen)) == -1) {
abort();
free(out);
return;
}