From ab7a2730b12214b5157bac2ee5a1a6053f9116e8 Mon Sep 17 00:00:00 2001 From: Sergey Guralnik Date: Tue, 14 May 2013 15:11:28 +0300 Subject: explorer: Use comma as argument delimiter (eterbug #9153). (cherry picked from commit 4b9d81b4b52f311e0175a02fdbc83b0922311736) --- programs/explorer/explorer.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/programs/explorer/explorer.c b/programs/explorer/explorer.c index 7fa64ae..d82a23c 100644 --- a/programs/explorer/explorer.c +++ b/programs/explorer/explorer.c @@ -646,7 +646,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; -- 1.7.0.4