mirror of
https://github.com/ossrs/srs.git
synced 2025-03-09 15:49:59 +00:00
Always use string instance to avoid crash risk. 3.0.95
This commit is contained in:
parent
b794c9e4ec
commit
10464a5fbe
15 changed files with 119 additions and 14 deletions
|
@ -110,12 +110,12 @@ void srs_mp4_delimiter_newline(stringstream& ss, SrsMp4DumpContext dc)
|
|||
srs_mp4_padding(ss, dc);
|
||||
}
|
||||
|
||||
int srs_mp4_string_length(const string& v)
|
||||
int srs_mp4_string_length(string v)
|
||||
{
|
||||
return (int)v.length()+1;
|
||||
}
|
||||
|
||||
void srs_mp4_string_write(SrsBuffer* buf, const string& v)
|
||||
void srs_mp4_string_write(SrsBuffer* buf, string v)
|
||||
{
|
||||
if (!v.empty()) {
|
||||
buf->write_bytes((char*)v.data(), (int)v.length());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue