Kernel: Use Userspace<T> for the execve syscall

This commit is contained in:
Brian Gianforcaro 2020-08-09 12:11:13 -07:00 committed by Andreas Kling
commit 0f42463eab
Notes: sideshowbarker 2024-07-19 04:06:27 +09:00
5 changed files with 8 additions and 8 deletions

View file

@ -241,7 +241,7 @@ struct ImmutableBufferArgument {
};
struct StringListArgument {
StringArgument* strings { nullptr };
Userspace<StringArgument*> strings { };
size_t length { 0 };
};