mirror of
https://github.com/geode-sdk/geode.git
synced 2025-04-04 01:01:00 -04:00
Fix crashes on trying to delete nullptr
This commit is contained in:
parent
763e312baf
commit
4be910bda4
1 changed files with 3 additions and 3 deletions
|
@ -93,7 +93,7 @@ namespace geode::utils {
|
|||
}
|
||||
|
||||
~MiniFunction() {
|
||||
delete m_state;
|
||||
if (m_state) delete m_state;
|
||||
}
|
||||
|
||||
template <class Callable>
|
||||
|
@ -112,13 +112,13 @@ namespace geode::utils {
|
|||
m_state(new MiniFunctionStateMemberPointer<MemberFunctionPointer, Ret, Args...>(func)) {}
|
||||
|
||||
MiniFunction& operator=(MiniFunction const& other) {
|
||||
delete m_state;
|
||||
if (m_state) delete m_state;
|
||||
m_state = other.m_state ? other.m_state->clone() : nullptr;
|
||||
return *this;
|
||||
}
|
||||
|
||||
MiniFunction& operator=(MiniFunction&& other) {
|
||||
delete m_state;
|
||||
if (m_state) delete m_state;
|
||||
m_state = other.m_state;
|
||||
other.m_state = nullptr;
|
||||
return *this;
|
||||
|
|
Loading…
Add table
Reference in a new issue