1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-07-01 16:47:46 +02:00

Fix possible crash.

This commit is contained in:
irungentoo 2013-11-28 19:52:30 -05:00
parent 7e0bc7768b
commit e21e5c18ff

View File

@ -110,7 +110,7 @@ static void chat_onFileSendRequest(ToxWindow *self, Tox *m, int num, uint8_t fil
ChatContext *ctx = (ChatContext *) self->chatwin;
int idx = strlen(pathname) - 1;
while (pathname[idx] == '/') {
while (pathname[idx] == '/' && idx >= 0) {
pathname[idx--] = 0;
}