diff options
| author | Rusty Wagner <rusty@vector35.com> | 2016-05-21 22:16:46 -0400 |
|---|---|---|
| committer | Rusty Wagner <rusty@vector35.com> | 2016-05-21 22:17:02 -0400 |
| commit | 97f1e422ea6a7825148ec0a1c64906695950053e (patch) | |
| tree | e75cbf735d08fa13d87997c39f718e801eae036e /plugin.cpp | |
| parent | e5320a7ad9a8b602823243228a2ddc904d8dc5e7 (diff) | |
Fix crash caused by automatic operator=
Diffstat (limited to 'plugin.cpp')
| -rw-r--r-- | plugin.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -53,6 +53,17 @@ PluginCommand::~PluginCommand() } +PluginCommand& PluginCommand::operator=(const PluginCommand& cmd) +{ + BNFreeString(m_command.name); + BNFreeString(m_command.description); + m_command = cmd.m_command; + m_command.name = BNAllocString(cmd.m_command.name); + m_command.description = BNAllocString(cmd.m_command.description); + return *this; +} + + void PluginCommand::DefaultPluginCommandActionCallback(void* ctxt, BNBinaryView* view) { RegisteredDefaultCommand* cmd = (RegisteredDefaultCommand*)ctxt; |
