Skip to content

Commit

Permalink
Fixing issue with memory freeing #17
Browse files Browse the repository at this point in the history
  • Loading branch information
lexus2k committed May 4, 2021
1 parent 53af8af commit 46993c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/TinyProtocolFd.h
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ class FdD: public IFd

~FdD()
{
free( m_buffer );
delete[] m_buffer;
}

private:
Expand Down

0 comments on commit 46993c8

Please sign in to comment.