mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-10 12:21:52 +00:00
ByteBuffer: Remove pointer() in favor of data()
We had two ways to get the data inside a ByteBuffer. That was silly.
This commit is contained in:
parent
dd696e7c75
commit
8f45a259fc
Notes:
sideshowbarker
2024-07-19 11:52:49 +09:00
Author: https://github.com/awesomekling
Commit: 8f45a259fc
30 changed files with 89 additions and 92 deletions
|
@ -714,7 +714,7 @@ KResultOr<NonnullRefPtr<Custody>> VFS::resolve_path(StringView path, Custody& ba
|
|||
|
||||
// FIXME: We should limit the recursion here and return -ELOOP if it goes to deep.
|
||||
auto symlink_target = resolve_path(
|
||||
StringView(symlink_contents.pointer(),
|
||||
StringView(symlink_contents.data(),
|
||||
symlink_contents.size()),
|
||||
current_parent,
|
||||
parent_custody,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue