mirror of
https://github.com/Genymobile/scrcpy
synced 2024-11-15 06:12:53 +00:00
Limit buffering time value
This avoids unreasonable values which could lead to integer overflow.
This commit is contained in:
parent
be3f949aa5
commit
1ea9e8f693
@ -1385,7 +1385,11 @@ parse_max_fps(const char *s, uint16_t *max_fps) {
|
|||||||
static bool
|
static bool
|
||||||
parse_buffering_time(const char *s, sc_tick *tick) {
|
parse_buffering_time(const char *s, sc_tick *tick) {
|
||||||
long value;
|
long value;
|
||||||
bool ok = parse_integer_arg(s, &value, false, 0, 0x7FFFFFFF,
|
// In practice, buffering time should not exceed a few seconds.
|
||||||
|
// Limit it to some arbitrary value (1 hour) to prevent 32-bit overflow
|
||||||
|
// when multiplied by the audio sample size and the number of samples per
|
||||||
|
// millisecond.
|
||||||
|
bool ok = parse_integer_arg(s, &value, false, 0, 60 * 60 * 1000,
|
||||||
"buffering time");
|
"buffering time");
|
||||||
if (!ok) {
|
if (!ok) {
|
||||||
return false;
|
return false;
|
||||||
|
Loading…
Reference in New Issue
Block a user