set argv[0] even if we do not pass anything else to the script

This commit is contained in:
Albert S. 2017-03-19 09:53:04 +01:00
부모 692e8d4514
커밋 68c67aa5e8
1개의 변경된 파일3개의 추가작업 그리고 2개의 파일을 삭제

파일 보기

@ -1,5 +1,5 @@
/*
* Copyright (c) 2014-2016 <adhocify@quitesimple.org>
* Copyright (c) 2014-2017 Albert S. <adhocify@quitesimple.org>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -587,7 +587,8 @@ void parse_options(int argc, char **argv)
}
prog = argv[optind++];
if(optind < argc)
if(optind <= argc)
{
fill_script_arguments(argc - optind, &argv[optind]);
}