bug fix: Fix mismatching delete operator #2
Reference in New Issue
Block a user
Delete Branch "fix_command_chan_leak"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
cmd.packet.data is allocated using new[] and freed using delete. Use delete[]
instead.