Skip to content

Commit c5ccee1

Browse files
SRT: fix crash when srt_to_rtmp off (#3386)
* SRT: fix crash when srt_to_rtmp off * Release v5.0.136 v6.0.17 Co-authored-by: chundonglinlin <[email protected]>
1 parent 02653ce commit c5ccee1

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

trunk/doc/CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ The changelog for SRS.
88

99
## SRS 6.0 Changelog
1010

11+
* v6.0, 2023-01-18, Merge [#3386](https://github.com/ossrs/srs/pull/3386): SRT: fix crash when srt_to_rtmp off. v6.0.17 (#3386)
1112
* v5.0, 2023-01-17, Merge [#3385](https://github.com/ossrs/srs/pull/3385): API: Support server/pid/service label for exporter and api. v6.0.16 (#3385)
1213
* v6.0, 2023-01-17, Merge [#3379](https://github.com/ossrs/srs/pull/3379): H265: Support demux vps/pps info. v6.0.15
1314
* v6.0, 2023-01-08, Merge [#3360](https://github.com/ossrs/srs/pull/3360): H265: Support DVR HEVC stream to MP4. v6.0.14
@@ -30,6 +31,7 @@ The changelog for SRS.
3031

3132
## SRS 5.0 Changelog
3233

34+
* v5.0, 2023-01-18, Merge [#3386](https://github.com/ossrs/srs/pull/3386): SRT: fix crash when srt_to_rtmp off. v5.0.136 (#3386)
3335
* v5.0, 2023-01-17, Merge [#3385](https://github.com/ossrs/srs/pull/3385): API: Support server/pid/service label for exporter and api. v5.0.135 (#3385)
3436
* v5.0, 2023-01-17, Merge [#3383](https://github.com/ossrs/srs/pull/3383): GB: Fix PSM parsing indicator bug. v5.0.134 (#3383)
3537
* v5.0, 2023-01-08, Merge [#3308](https://github.com/ossrs/srs/pull/3308): DVR: Improve file write performance by fwrite with cache. v5.0.133

trunk/src/app/srs_app_srt_source.cpp

+5-3
Original file line numberDiff line numberDiff line change
@@ -768,7 +768,7 @@ srs_error_t SrsSrtSource::on_publish()
768768
return srs_error_wrap(err, "source id change");
769769
}
770770

771-
if ((err = bridge_->on_publish()) != srs_success) {
771+
if (bridge_ && (err = bridge_->on_publish()) != srs_success) {
772772
return srs_error_wrap(err, "bridge on publish");
773773
}
774774

@@ -787,7 +787,9 @@ void SrsSrtSource::on_unpublish()
787787

788788
can_publish_ = true;
789789

790-
bridge_->on_unpublish();
790+
if (bridge_) {
791+
bridge_->on_unpublish();
792+
}
791793
srs_freep(bridge_);
792794
}
793795

@@ -802,7 +804,7 @@ srs_error_t SrsSrtSource::on_packet(SrsSrtPacket* packet)
802804
}
803805
}
804806

805-
if ((err = bridge_->on_packet(packet)) != srs_success) {
807+
if (bridge_ && (err = bridge_->on_packet(packet)) != srs_success) {
806808
return srs_error_wrap(err, "bridge consume message");
807809
}
808810

trunk/src/core/srs_core_version5.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99

1010
#define VERSION_MAJOR 5
1111
#define VERSION_MINOR 0
12-
#define VERSION_REVISION 135
12+
#define VERSION_REVISION 136
1313

1414
#endif

trunk/src/core/srs_core_version6.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99

1010
#define VERSION_MAJOR 6
1111
#define VERSION_MINOR 0
12-
#define VERSION_REVISION 16
12+
#define VERSION_REVISION 17
1313

1414
#endif

0 commit comments

Comments
 (0)