Fix segfault when testing if reaidng from stdin "-"
This commit is contained in:
parent
e0f5500bb5
commit
2983330512
@ -694,7 +694,9 @@ int tar_main(int argc, char **argv)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (*argv[optind] == '-') {
|
/* Check if we are reading from stdin */
|
||||||
|
if ((argv[optind]) && (*argv[optind] == '-')) {
|
||||||
|
/* Default is to read from stdin, so just skip to next arg */
|
||||||
optind++;
|
optind++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user