mirror of
https://github.com/ossrs/srs.git
synced 2025-02-14 20:31:56 +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()
|
||||
{
|
||||
io = NULL;
|
||||
kbps = NULL;
|
||||
kbps = new SrsKbps();
|
||||
client = NULL;
|
||||
_edge = NULL;
|
||||
_req = NULL;
|
||||
|
|
Loading…
Reference in a new issue