Simplify ".."

This commit is contained in:
Přemysl Eric Janouch 2017-05-26 01:39:44 +02:00
parent ec7a0dc95f
commit f156c67e34
Signed by: p
GPG Key ID: B715679E3A361BE6
1 changed files with 1 additions and 3 deletions

4
ell.c
View File

@ -1053,10 +1053,8 @@ defn (fn_concatenate) {
}
buffer_append (&buf, args->value, args->len);
}
buffer_append_c (&buf, '\0');
bool ok = !(ctx->memory_failure |= buf.memory_failure)
&& check (ctx, (*result = new_string (buf.s, buf.len - 1)));
&& check (ctx, (*result = new_string (buf.s, buf.len)));
free (buf.s);
return ok;
}