audio: fix released buffer bounds check
This commit is contained in:
parent
a086cf4136
commit
c847c2e75a
1 changed files with 6 additions and 2 deletions
|
@ -146,11 +146,15 @@ public:
|
|||
break;
|
||||
}
|
||||
|
||||
if (released < tags.size()) {
|
||||
tags[released] = tag;
|
||||
}
|
||||
|
||||
released++;
|
||||
|
||||
if (released >= tags.size()) {
|
||||
break;
|
||||
}
|
||||
|
||||
tags[released++] = tag;
|
||||
}
|
||||
|
||||
return released;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue