| Index: runtime/vm/object.cc
|
| diff --git a/runtime/vm/object.cc b/runtime/vm/object.cc
|
| index 8b4b9ed31c86ed12f89f2dfa03948147f097db38..9bfb6695089d1aca6709ebfaa64f3489ae1859e1 100644
|
| --- a/runtime/vm/object.cc
|
| +++ b/runtime/vm/object.cc
|
| @@ -7065,7 +7065,7 @@ RawLibrary* Library::New() {
|
| RawLibrary* Library::NewLibraryHelper(const String& url,
|
| bool import_core_lib) {
|
| const Library& result = Library::Handle(Library::New());
|
| - result.StorePointer(&result.raw_ptr()->name_, url.raw());
|
| + result.StorePointer(&result.raw_ptr()->name_, Symbols::Empty().raw());
|
| result.StorePointer(&result.raw_ptr()->url_, url.raw());
|
| result.raw_ptr()->private_key_ = Scanner::AllocatePrivateKey(result);
|
| result.raw_ptr()->dictionary_ = Object::empty_array().raw();
|
|
|