Changeset 719
- Timestamp:
- 01/14/12 03:59:52 (4 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/thelib/src/protocols/rtmp/basertmpprotocol.cpp
r718 r719 360 360 361 361 if (_streams[streamId] == NULL) { 362 FATAL("Try to close a NULL stream");363 return false;362 WARN("Try to close a NULL stream"); 363 return true; 364 364 } 365 365 … … 462 462 463 463 if (_streams[streamId] == NULL) { 464 FATAL("Try to play a stream on a NULL placeholder"); 465 return NULL; 466 } 464 WARN("Try to play a stream on a NULL placeholder"); 465 } else { 467 466 468 467 if (_streams[streamId]->GetType() != ST_NEUTRAL_RTMP) { … … 474 473 delete _streams[streamId]; 475 474 _streams[streamId] = NULL; 475 } 476 476 477 477 BaseOutNetRTMPStream *pBaseOutNetRTMPStream = BaseOutNetRTMPStream::GetInstance(
Note: See TracChangeset
for help on using the changeset viewer.
