diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2019-06-15 07:45:41 +0100 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2019-06-15 07:45:41 +0100 |
commit | 748633c887d7ec1c86a77610c1e088985cc7f839 (patch) | |
tree | 390f803a8ebbcfc2c687e4e4566a42a263a43ec2 /input.c | |
parent | 08f55414e1a0f5599fa7d62db711fbfa4e4a80b2 (diff) | |
download | rtmux-748633c887d7ec1c86a77610c1e088985cc7f839.tar.gz rtmux-748633c887d7ec1c86a77610c1e088985cc7f839.tar.bz2 rtmux-748633c887d7ec1c86a77610c1e088985cc7f839.zip |
Remove a stray abort.
Diffstat (limited to 'input.c')
-rw-r--r-- | input.c | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -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; } |