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
|
@ -146,6 +146,7 @@ For previous versions, please read:
|
||||||
|
|
||||||
## V3 changes
|
## V3 changes
|
||||||
|
|
||||||
|
* v3.0, 2019-12-27, For [#1544][bug #1544], fix memory leaking for complex error. 3.0.87
|
||||||
* v3.0, 2019-12-27, Add links for flv.js, hls.js and dash.js.
|
* v3.0, 2019-12-27, Add links for flv.js, hls.js and dash.js.
|
||||||
* v3.0, 2019-12-26, For [#1105][bug #1105], http server support mp4 range.
|
* v3.0, 2019-12-26, For [#1105][bug #1105], http server support mp4 range.
|
||||||
* v3.0, 2019-12-26, For [#1105][bug #1105], dvr mp4 supports playing on Chrome/Safari/Firefox. 3.0.86
|
* v3.0, 2019-12-26, For [#1105][bug #1105], dvr mp4 supports playing on Chrome/Safari/Firefox. 3.0.86
|
||||||
|
@ -1569,6 +1570,7 @@ Winlin
|
||||||
[bug #1538]: https://github.com/ossrs/srs/issues/1538
|
[bug #1538]: https://github.com/ossrs/srs/issues/1538
|
||||||
[bug #1282]: https://github.com/ossrs/srs/issues/1282
|
[bug #1282]: https://github.com/ossrs/srs/issues/1282
|
||||||
[bug #1105]: https://github.com/ossrs/srs/issues/1105
|
[bug #1105]: https://github.com/ossrs/srs/issues/1105
|
||||||
|
[bug #1544]: https://github.com/ossrs/srs/issues/1544
|
||||||
[bug #xxxxxxxxxxxxx]: https://github.com/ossrs/srs/issues/xxxxxxxxxxxxx
|
[bug #xxxxxxxxxxxxx]: https://github.com/ossrs/srs/issues/xxxxxxxxxxxxx
|
||||||
|
|
||||||
[exo #828]: https://github.com/google/ExoPlayer/pull/828
|
[exo #828]: https://github.com/google/ExoPlayer/pull/828
|
||||||
|
|
|
@ -27,7 +27,7 @@
|
||||||
// The version config.
|
// The version config.
|
||||||
#define VERSION_MAJOR 3
|
#define VERSION_MAJOR 3
|
||||||
#define VERSION_MINOR 0
|
#define VERSION_MINOR 0
|
||||||
#define VERSION_REVISION 86
|
#define VERSION_REVISION 87
|
||||||
|
|
||||||
// The macros generated by configure script.
|
// The macros generated by configure script.
|
||||||
#include <srs_auto_headers.hpp>
|
#include <srs_auto_headers.hpp>
|
||||||
|
|
|
@ -62,6 +62,7 @@ SrsCplxError::SrsCplxError()
|
||||||
|
|
||||||
SrsCplxError::~SrsCplxError()
|
SrsCplxError::~SrsCplxError()
|
||||||
{
|
{
|
||||||
|
srs_freep(wrapped);
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string SrsCplxError::description() {
|
std::string SrsCplxError::description() {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue