1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-07-01 17:57:45 +02:00

Make sure friend message is null-terminated else generate garbate on screen.

This commit is contained in:
AZ Huang 2013-11-28 20:20:52 +08:00
parent a04c8964ee
commit 8459d44506

View File

@ -217,6 +217,9 @@ static void prompt_onConnectionChange(ToxWindow *self, Tox *m, int friendnum , u
static void prompt_onFriendRequest(ToxWindow *self, uint8_t *key, uint8_t *data, uint16_t length) static void prompt_onFriendRequest(ToxWindow *self, uint8_t *key, uint8_t *data, uint16_t length)
{ {
// make sure message data is null-terminated
data[length - 1] = 0;
wprintw(self->window, "\nFriend request with the message: %s\n", data); wprintw(self->window, "\nFriend request with the message: %s\n", data);
int n = add_friend_request(key); int n = add_friend_request(key);