| Index: runtime/vm/dart_api_impl.cc
|
| diff --git a/runtime/vm/dart_api_impl.cc b/runtime/vm/dart_api_impl.cc
|
| index 5e50431646a3e2d15a404f5d669523e434173553..15d6dec63db1b3134101c9c945c116676a23dbdf 100644
|
| --- a/runtime/vm/dart_api_impl.cc
|
| +++ b/runtime/vm/dart_api_impl.cc
|
| @@ -793,9 +793,9 @@ static char* BuildIsolateName(const char* script_uri,
|
| }
|
|
|
| char* chars = NULL;
|
| - intptr_t len = OS::SNPrint(NULL, 0, "%s/%s", script_uri, main) + 1;
|
| + intptr_t len = OS::SNPrint(NULL, 0, "%s$%s", script_uri, main) + 1;
|
| chars = reinterpret_cast<char*>(malloc(len));
|
| - OS::SNPrint(chars, len, "%s/%s", script_uri, main);
|
| + OS::SNPrint(chars, len, "%s$%s", script_uri, main);
|
| return chars;
|
| }
|
|
|
|
|