Chromium Code Reviews| Index: runtime/bin/test_extension_linux.cc |
| =================================================================== |
| --- runtime/bin/test_extension_linux.cc (revision 5191) |
| +++ runtime/bin/test_extension_linux.cc (working copy) |
| @@ -32,7 +32,9 @@ |
| Dart_Handle check_error; |
| check_error = Dart_StringToCString(name, &cname); |
| - if (Dart_IsError(check_error)) return NULL; |
| + if (Dart_IsError(check_error)) { |
| + Dart_PropateError(check_error); |
| + } |
| if (!strcmp("Cat_IfNull", cname) && argc == 2) { |
| return IfNull; |
| } |