Add a byte for the null terminator in ENSURE_6X
Siddhesh Poyarekar at RedHat built clisp with -D_FORTIFY_SOURCE=3 (see https://bugzilla.redhat.com/show_bug.cgi?id=2115476). This turned up an issue with the ENSURE_6X macro in modules/syscalls/calls.c. It allocates 6 more bytes than the bytelen for adding six 'X' characters, but the bytelen does not include the null terminator. Increase the number of bytes allocated by 1 to fix this.