Skip to content

Commit

Permalink
SrsContextId assignment can be improved without create a duplicated o…
Browse files Browse the repository at this point in the history
…ne. v5.0.175 (ossrs#3503)

SrsContextId object creation can be improved on `srs_protocol_log.cpp`,
No need to create one, then assign it back. It seems a common mistake
for Cpp programmers.

---------

Co-authored-by: john <hondaxiao@tencent.com>
  • Loading branch information
2 people authored and duiniuluantanqin committed Sep 14, 2023
1 parent 82b7171 commit 88e3a2f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions trunk/doc/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ The changelog for SRS.
<a name="v5-changes"></a>

## SRS 5.0 Changelog
* v5.0, 2023-08-28, Merge [#3503](https://github.com/ossrs/srs/pull/3503): SrsContextId assignment can be improved without create a duplicated one. v5.0.175 (#3503)
* v5.0, 2023-08-28, Merge [#3781](https://github.com/ossrs/srs/pull/3781): HLS: Fix on_hls and hls_dispose critical zone issue. v5.0.174 (#3781)
* v5.0, 2023-08-28, Merge [#3768](https://github.com/ossrs/srs/pull/3768): Support include empty config file. v5.0.173 (#3768)
* v5.0, 2023-08-25, Merge [#3782](https://github.com/ossrs/srs/pull/3782): HLS: Support reload HLS asynchronously. v5.0.172 (#3782)
Expand Down
2 changes: 1 addition & 1 deletion trunk/src/core/srs_core_version5.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@

#define VERSION_MAJOR 5
#define VERSION_MINOR 0
#define VERSION_REVISION 174
#define VERSION_REVISION 175

#endif
2 changes: 1 addition & 1 deletion trunk/src/protocol/srs_protocol_log.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ SrsThreadContext::~SrsThreadContext()

SrsContextId SrsThreadContext::generate_id()
{
SrsContextId cid = SrsContextId();
SrsContextId cid;
return cid.set_value(srs_random_str(8));
}

Expand Down

0 comments on commit 88e3a2f

Please sign in to comment.