mirror of
https://github.com/ossrs/srs.git
synced 2025-03-09 15:49:59 +00:00
Fix #1544, fix memory leaking for complex error. 3.0.87
This commit is contained in:
parent
4e7389b131
commit
043781fe81
3 changed files with 4 additions and 1 deletions
|
@ -27,7 +27,7 @@
|
|||
// The version config.
|
||||
#define VERSION_MAJOR 3
|
||||
#define VERSION_MINOR 0
|
||||
#define VERSION_REVISION 86
|
||||
#define VERSION_REVISION 87
|
||||
|
||||
// The macros generated by configure script.
|
||||
#include <srs_auto_headers.hpp>
|
||||
|
|
|
@ -62,6 +62,7 @@ SrsCplxError::SrsCplxError()
|
|||
|
||||
SrsCplxError::~SrsCplxError()
|
||||
{
|
||||
srs_freep(wrapped);
|
||||
}
|
||||
|
||||
std::string SrsCplxError::description() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue