mirror of
https://github.com/sheumann/hush.git
synced 2024-12-27 16:31:24 +00:00
tar: fix recently added SEGV on "tar" w/o args
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
parent
afa2d33aa4
commit
4b6abf6655
@ -860,7 +860,7 @@ int tar_main(int argc UNUSED_PARAM, char **argv)
|
||||
applet_long_options = tar_longopts;
|
||||
#endif
|
||||
#if ENABLE_DESKTOP
|
||||
if (argv[1][0] != '-') {
|
||||
if (argv[1] && argv[1][0] != '-') {
|
||||
/* Compat:
|
||||
* 1st argument without dash handles options with parameters
|
||||
* differently from dashed one: it takes *next argv[i]*
|
||||
|
Loading…
Reference in New Issue
Block a user