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

Fixing couple leaking file descriptors

This commit is contained in:
Andrey Alekseenko 2015-03-18 19:28:04 +03:00
parent 6669d5632f
commit ec23cedc3a
2 changed files with 3 additions and 0 deletions

View File

@ -284,6 +284,8 @@ int dir_match(ToxWindow *self, Tox *m, const wchar_t *line, const wchar_t *cmd)
}
}
closedir(dp);
if (dircount == 0)
return -1;

View File

@ -325,6 +325,7 @@ static void chat_onFileSendRequest(ToxWindow *self, Tox *m, int32_t num, uint8_t
int count = 1;
while ((filecheck = fopen(filename, "r"))) {
fclose(filecheck);
filename[len] = '\0';
char d[9];
sprintf(d, "(%d)", count++);