diff options
author | sin <sin@2f30.org> | 2014-09-15 15:21:02 +0100 |
---|---|---|
committer | sin <sin@2f30.org> | 2014-09-15 15:21:02 +0100 |
commit | 34171f70ed59100b5371ba81341da66dc186782b (patch) | |
tree | e0f70622a66d7706cb5c8461a4c9cc212a32bce0 /ratatox.c | |
parent | 27f88d44c47bd0fc2c6aa07e8c9825f6013495d6 (diff) |
Fix off-by-one
Diffstat (limited to 'ratatox.c')
-rw-r--r-- | ratatox.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -518,7 +518,7 @@ friendcreate(int32_t fid) blabla(f, "online", "w", tox_get_friend_connection_status(tox, fid) == 0 ? "0\n" : "1\n"); r = tox_get_status_message_size(tox, fid); - if (r > TOX_MAX_STATUSMESSAGE_LENGTH + 1) + if (r > TOX_MAX_STATUSMESSAGE_LENGTH) r = TOX_MAX_STATUSMESSAGE_LENGTH; statusmsg[r] = '\0'; blabla(f, "statusmsg", "w", "%s\n", statusmsg); |