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

Fix segfault when using -f in toxic

Call strdup() to the data file argument string to avoid segmentation
fault when it is later freed.
This commit is contained in:
Manuel Argüelles 2013-08-14 10:40:26 -05:00
parent 42028289c5
commit 9cabdaa6a0

2
main.c
View File

@ -218,7 +218,7 @@ int main(int argc, char *argv[])
else if (argv[i][0] == '-') {
if (argv[i][1] == 'f') {
if (argv[i + 1] != NULL)
DATA_FILE = argv[i + 1];
DATA_FILE = strdup(argv[i + 1]);
else
f_flag = -1;
} else if (argv[i][1] == 'n') {