Skip to content

Commit

Permalink
Update to FIDL2 String interface (flutter#4775)
Browse files Browse the repository at this point in the history
  • Loading branch information
abarth authored Mar 12, 2018
1 parent d155565 commit 1c54461
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion content_handler/application_controller_impl.cc
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ fdio_ns_t* ApplicationControllerImpl::SetupNamespace(
}
zx::channel dir = std::move(flat->directories[i]);
zx_handle_t dir_handle = dir.release();
const char* path = flat->paths[i].data();
const char* path = flat->paths[i]->data();
status = fdio_ns_bind(fdio_namespc, path, dir_handle);
if (status != ZX_OK) {
FXL_LOG(ERROR) << "Failed to bind " << flat->paths[i] << " to namespace";
Expand Down

0 comments on commit 1c54461

Please sign in to comment.