diff --git a/libc/src/__support/RPC/rpc.h b/libc/src/__support/RPC/rpc.h --- a/libc/src/__support/RPC/rpc.h +++ b/libc/src/__support/RPC/rpc.h @@ -82,10 +82,10 @@ LIBC_INLINE Process &operator=(Process &&) = default; LIBC_INLINE ~Process() = default; - uint64_t port_count; - cpp::Atomic *inbox; - cpp::Atomic *outbox; - Packet *packet; + uint64_t port_count = 0; + cpp::Atomic *inbox = nullptr; + cpp::Atomic *outbox = nullptr; + Packet *packet = nullptr; cpp::Atomic lock[DEFAULT_PORT_COUNT] = {0};