| Index: runtime/bin/io_buffer.cc
|
| diff --git a/runtime/bin/io_buffer.cc b/runtime/bin/io_buffer.cc
|
| index 2317afadcd54256dc6cc2325cc50ecc3d2898908..3d671e0030c48b540747910d63b4e9e5b1fdf125 100644
|
| --- a/runtime/bin/io_buffer.cc
|
| +++ b/runtime/bin/io_buffer.cc
|
| @@ -7,10 +7,10 @@
|
| namespace dart {
|
| namespace bin {
|
|
|
| -Dart_Handle IOBuffer::Allocate(intptr_t size, uint8_t **buffer) {
|
| +Dart_Handle IOBuffer::Allocate(intptr_t size, uint8_t** buffer) {
|
| uint8_t* data = Allocate(size);
|
| - Dart_Handle result = Dart_NewExternalTypedData(
|
| - Dart_TypedData_kUint8, data, size);
|
| + Dart_Handle result =
|
| + Dart_NewExternalTypedData(Dart_TypedData_kUint8, data, size);
|
| Dart_NewWeakPersistentHandle(result, data, size, IOBuffer::Finalizer);
|
|
|
| if (Dart_IsError(result)) {
|
|
|