"Fehlermeldung enthält aus heiterem Himmel die Angabe "1 Adamantium""
fixed string termination (slight off-by-one error)
Issue: 1485
This commit is contained in:
Enno Rehling 2008-09-06 15:46:28 +00:00
parent 90b7bbdfbe
commit b212f0b666
1 changed files with 1 additions and 1 deletions

View File

@ -125,7 +125,7 @@ get_command(const order * ord, char * sbuffer, size_t size)
++size;
--bufp;
}
memcpy(bufp+1, "[...]", 5); /* TODO: make sure this only happens in eval_command */
memcpy(bufp+1, "[...]", 6); /* TODO: make sure this only happens in eval_command */
bufp += 6;
}
}