Skip to content

Commit 08698d7

Browse files
committed
do not use full escaping path for cli args - does not correctly match command line behavior
1 parent 09418f1 commit 08698d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/raddbg/raddbg_core.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10030,7 +10030,7 @@ rd_init(CmdLine *cmdln)
1003010030
{
1003110031
if(str8_find_needle(n->string, 0, str8_lit(" "), 0) < n->string.size)
1003210032
{
10033-
str8_list_pushf(scratch.arena, &passthrough_args_list, "\"%S\"", escaped_from_raw_str8(scratch.arena, n->string));
10033+
str8_list_pushf(scratch.arena, &passthrough_args_list, "\"%S\"", n->string);
1003410034
}
1003510035
else
1003610036
{

0 commit comments

Comments
 (0)