mirror of
https://github.com/weechat/weechat.git
synced 2026-06-25 12:26:40 +02:00
exec: fix minimal length of unquoted string
This commit is contained in:
@@ -335,7 +335,7 @@ exec_command_parse_options (struct t_exec_cmd_options *cmd_options,
|
||||
if (argv[i][0] == '"')
|
||||
{
|
||||
/* search the ending double quote */
|
||||
length_total = 1;
|
||||
length_total = 2;
|
||||
end = i;
|
||||
while (end < argc)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user