mirror of
https://github.com/ossrs/srs.git
synced 2025-03-09 15:49:59 +00:00
Fix #2311, Copy the request for stat client. 3.0.162
This commit is contained in:
parent
b7af726ffc
commit
71dda68f62
4 changed files with 9 additions and 2 deletions
|
@ -425,10 +425,14 @@ srs_error_t SrsStatistic::on_client(std::string id, SrsRequest* req, SrsConnecti
|
|||
|
||||
// got client.
|
||||
client->conn = conn;
|
||||
client->req = req;
|
||||
client->type = type;
|
||||
stream->nb_clients++;
|
||||
vhost->nb_clients++;
|
||||
|
||||
// The req might be freed, in such as SrsLiveStream::update, so we must copy it.
|
||||
// @see https://github.com/ossrs/srs/issues/2311
|
||||
srs_freep(client->req);
|
||||
client->req = req->copy();
|
||||
|
||||
return err;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue