mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-30 08:18:49 +00:00
Kernel: Fix comparing StringViews with strcmp().
StringView character buffer is not guaranteed to be null-terminated; in particular it will not be null-terminated when making a substring. This means that the buffer can not be used with C functions that expect a null-terminated string. Instead, StringView provides a convinient operator == for comparing it with Strings and C stirngs, so use that. This fixes /proc/self/... resolution failures in ProcFS, since the name ("self") passed to ProcFSInode::lookup() would not be null-terminated.
This commit is contained in:
parent
b29a83d554
commit
75df45d709
Notes:
sideshowbarker
2024-07-19 13:38:16 +09:00
Author: https://github.com/bugaevc 🔰
Commit: 75df45d709
Pull-request: https://github.com/SerenityOS/serenity/pull/226
2 changed files with 5 additions and 5 deletions
|
@ -767,7 +767,7 @@ KResult Ext2FSInode::add_child(InodeIdentifier child_id, const StringView& name,
|
|||
Vector<FS::DirectoryEntry> entries;
|
||||
bool name_already_exists = false;
|
||||
traverse_as_directory([&](auto& entry) {
|
||||
if (!strcmp(entry.name, name.characters())) {
|
||||
if (name == entry.name) {
|
||||
name_already_exists = true;
|
||||
return false;
|
||||
}
|
||||
|
@ -812,7 +812,7 @@ KResult Ext2FSInode::remove_child(const StringView& name)
|
|||
|
||||
Vector<FS::DirectoryEntry> entries;
|
||||
traverse_as_directory([&](auto& entry) {
|
||||
if (strcmp(entry.name, name.characters()) != 0)
|
||||
if (name != entry.name)
|
||||
entries.append(entry);
|
||||
return true;
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue