mirror of
https://github.com/jakcron/nstool
synced 2024-11-23 05:59:29 +00:00
[hac] Fixed a bug where the raw buffer was not cleared in KernelCapabilityBinary.
This commit is contained in:
parent
8a60ee94ae
commit
f21f3f569a
1 changed files with 1 additions and 0 deletions
|
@ -11,6 +11,7 @@ nn::hac::KernelCapabilityBinary::KernelCapabilityBinary(const KernelCapabilityBi
|
||||||
void nn::hac::KernelCapabilityBinary::operator=(const KernelCapabilityBinary & other)
|
void nn::hac::KernelCapabilityBinary::operator=(const KernelCapabilityBinary & other)
|
||||||
{
|
{
|
||||||
clear();
|
clear();
|
||||||
|
mRawBinary = other.mRawBinary;
|
||||||
mThreadInfo = other.mThreadInfo;
|
mThreadInfo = other.mThreadInfo;
|
||||||
mSystemCalls = other.mSystemCalls;
|
mSystemCalls = other.mSystemCalls;
|
||||||
mMemoryMap = other.mMemoryMap;
|
mMemoryMap = other.mMemoryMap;
|
||||||
|
|
Loading…
Reference in a new issue