mirror of
https://github.com/ossrs/srs.git
synced 2025-03-09 15:49:59 +00:00
fix bug of NULL ptr for edge kbps object
This commit is contained in:
parent
7004510cc7
commit
0a1c0afe8d
1 changed files with 1 additions and 1 deletions
|
@ -334,7 +334,7 @@ int SrsEdgeIngester::connect_server()
|
||||||
SrsEdgeForwarder::SrsEdgeForwarder()
|
SrsEdgeForwarder::SrsEdgeForwarder()
|
||||||
{
|
{
|
||||||
io = NULL;
|
io = NULL;
|
||||||
kbps = NULL;
|
kbps = new SrsKbps();
|
||||||
client = NULL;
|
client = NULL;
|
||||||
_edge = NULL;
|
_edge = NULL;
|
||||||
_req = NULL;
|
_req = NULL;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue