diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-08-01 10:33:29 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-08-01 10:33:29 +0100 |
| commit | 23774eda327ec2dffbda34d907a3b70b7772c7b5 (patch) | |
| tree | 207035a11e2c50308074234c758ca0c55c0f1c91 /dev | |
| parent | 11ad9b56ccc1ed50c9293ee4771cf135f6b03c99 (diff) | |
fix: BinaryMutex: Assign `fLockingProcess` to nullptr.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev')
| -rw-r--r-- | dev/kernel/KernelKit/BinaryMutex.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dev/kernel/KernelKit/BinaryMutex.h b/dev/kernel/KernelKit/BinaryMutex.h index 4a192bdd..f2c15af0 100644 --- a/dev/kernel/KernelKit/BinaryMutex.h +++ b/dev/kernel/KernelKit/BinaryMutex.h @@ -34,6 +34,6 @@ class BinaryMutex final { NE_COPY_DEFAULT(BinaryMutex) private: - USER_PROCESS* fLockingProcess; + USER_PROCESS* fLockingProcess{nullptr}; }; } // namespace Kernel |
