From 4b9d81b4b52f311e0175a02fdbc83b0922311736 Mon Sep 17 00:00:00 2001 From: Sergey Guralnik Date: Tue, 14 May 2013 15:11:28 +0300 Subject: [PATCH] explorer: Use comma as argument delimiter. --- programs/explorer/explorer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/programs/explorer/explorer.c b/programs/explorer/explorer.c index aa7303d6463..1df781c69dc 100644 --- a/programs/explorer/explorer.c +++ b/programs/explorer/explorer.c @@ -643,7 +643,7 @@ static int copy_path_string(LPWSTR target, LPWSTR source) } else { - while (*source && !isspaceW(*source)) target[i++] = *source++; + while (*source && *source != ',') target[i++] = *source++; target[i] = 0; } return i;