mirror of
https://github.com/ossrs/srs.git
synced 2025-03-09 15:49:59 +00:00
Fix #908, use empty coroutine to avoid NULL pointer.
This commit is contained in:
parent
0e9e1792fe
commit
9ca36970aa
17 changed files with 115 additions and 41 deletions
|
@ -38,7 +38,7 @@ using namespace std;
|
|||
|
||||
SrsNgExec::SrsNgExec()
|
||||
{
|
||||
trd = NULL;
|
||||
trd = new SrsDummyCoroutine();
|
||||
pprint = SrsPithyPrint::create_exec();
|
||||
}
|
||||
|
||||
|
@ -61,7 +61,7 @@ int SrsNgExec::on_publish(SrsRequest* req)
|
|||
|
||||
// start thread to run all processes.
|
||||
srs_freep(trd);
|
||||
trd = new SrsCoroutine("encoder", this, _srs_context->get_id());
|
||||
trd = new SrsSTCoroutine("encoder", this, _srs_context->get_id());
|
||||
if ((ret = trd->start()) != ERROR_SUCCESS) {
|
||||
srs_error("st_thread_create failed. ret=%d", ret);
|
||||
return ret;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue