Module: wine Branch: master Commit: 4b9d81b4b52f311e0175a02fdbc83b0922311736 URL: http://source.winehq.org/git/wine.git/?a=commit;h=4b9d81b4b52f311e0175a02fdb...
Author: Sergey Guralnik serhio@etersoft.ru Date: Tue May 14 15:11:28 2013 +0300
explorer: Use comma as argument delimiter.
---
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 aa7303d..1df781c 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;