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

Fix partial fix: A slash in pos 0 still led to read access to pathname[-1].

This commit is contained in:
Coren[m] 2013-11-30 22:14:09 +01:00
parent 8ff907d719
commit 4f4a379a01

View File

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