mirror of
https://github.com/Tha14/toxic.git
synced 2024-11-23 00:43:01 +01:00
fix possible buffer overflow
This commit is contained in:
parent
9fe75fbc47
commit
618b731d5a
@ -93,6 +93,7 @@ void exit_toxic_success(Tox *m)
|
||||
kill_all_windows();
|
||||
|
||||
free(DATA_FILE);
|
||||
free(BLOCK_FILE);
|
||||
free(user_settings_);
|
||||
|
||||
#ifdef _SOUND_NOTIFY
|
||||
@ -523,11 +524,12 @@ static void parse_args(int argc, char *argv[])
|
||||
switch (opt) {
|
||||
case 'f':
|
||||
DATA_FILE = strdup(optarg);
|
||||
BLOCK_FILE = strdup(optarg);
|
||||
BLOCK_FILE = malloc(strlen(optarg) + strlen("-blocklist") + 1);
|
||||
|
||||
if (DATA_FILE == NULL || BLOCK_FILE == NULL)
|
||||
exit_toxic_err("failed in parse_args", FATALERR_MEMORY);
|
||||
|
||||
strcpy(BLOCK_FILE, optarg);
|
||||
strcat(BLOCK_FILE, "-blocklist");
|
||||
break;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user