| Index: src/parser.cc
 | 
| diff --git a/src/parser.cc b/src/parser.cc
 | 
| index 3adb6d26cdc1b0e1c73b259dea8e6b9201f21184..7566bc3e34851a992d5cad8dda4b8e22cfd01557 100644
 | 
| --- a/src/parser.cc
 | 
| +++ b/src/parser.cc
 | 
| @@ -3887,12 +3887,13 @@ void Parser::RegisterTargetUse(Label* target, Target* stop) {
 | 
|  
 | 
|  void Parser::HandleSourceURLComments() {
 | 
|    if (scanner_.source_url()->length() > 0) {
 | 
| -    info_->script()->set_source_url(
 | 
| -        *scanner_.source_url()->Internalize(isolate()));
 | 
| +    Handle<String> source_url = scanner_.source_url()->Internalize(isolate());
 | 
| +    info_->script()->set_source_url(*source_url);
 | 
|    }
 | 
|    if (scanner_.source_mapping_url()->length() > 0) {
 | 
| -    info_->script()->set_source_mapping_url(
 | 
| -        *scanner_.source_mapping_url()->Internalize(isolate()));
 | 
| +    Handle<String> source_mapping_url =
 | 
| +        scanner_.source_mapping_url()->Internalize(isolate());
 | 
| +    info_->script()->set_source_mapping_url(*source_mapping_url);
 | 
|    }
 | 
|  }
 | 
|  
 | 
| 
 |