| Index: runtime/vm/service.cc
|
| diff --git a/runtime/vm/service.cc b/runtime/vm/service.cc
|
| index 0f38d611a5022a837d395075d2ca556d67fe0f8d..2acbfe487910a8491cb29c1cf8e214f2ffbcfc73 100644
|
| --- a/runtime/vm/service.cc
|
| +++ b/runtime/vm/service.cc
|
| @@ -1173,7 +1173,7 @@ static void PrintSentinel(JSONStream* js,
|
| static SourceBreakpoint* LookupBreakpoint(Isolate* isolate, const char* id) {
|
| size_t end_pos = strcspn(id, "/");
|
| if (end_pos == strlen(id)) {
|
| - return false;
|
| + return NULL;
|
| }
|
| const char* rest = id + end_pos + 1; // +1 for '/'.
|
| if (strncmp("breakpoints", id, end_pos) == 0) {
|
|
|