1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 09:48:11 +00:00

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
parent 025a2a3c5b
commit 0f42463eab
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 };
};