| Index: runtime/lib/isolate_patch.dart
|
| ===================================================================
|
| --- runtime/lib/isolate_patch.dart (revision 29857)
|
| +++ runtime/lib/isolate_patch.dart (working copy)
|
| @@ -174,8 +174,10 @@
|
| keepAlivePort.close();
|
|
|
| SendPort replyTo = message[0];
|
| - // TODO(floitsch): don't send ok-message if we can't find the entry point.
|
| - replyTo.send("started");
|
| + if (replyTo != null) {
|
| + // TODO(floitsch): don't send ok-message if we can't find the entry point.
|
| + replyTo.send("started");
|
| + }
|
| if (isSpawnUri) {
|
| assert(message.length == 3);
|
| List<String> args = message[1];
|
|
|