| Index: webrtc/common_audio/vad/vad_core.c
|
| diff --git a/webrtc/common_audio/vad/vad_core.c b/webrtc/common_audio/vad/vad_core.c
|
| index 0340165eb5050ec9fbc386f6d373d0d90a4868f1..1a3889c36787f7bf993692e8fe7781c2ae35e2c2 100644
|
| --- a/webrtc/common_audio/vad/vad_core.c
|
| +++ b/webrtc/common_audio/vad/vad_core.c
|
| @@ -115,8 +115,8 @@ static int32_t WeightedAverage(int16_t* data, int16_t offset,
|
| // undefined behavior, so not a good idea; this just makes UBSan ignore the
|
| // violation, so that our old code can continue to do what it's always been
|
| // doing.)
|
| -static inline int32_t OverflowingMulS16ByS32ToS32(int16_t a, int32_t b)
|
| - RTC_NO_SANITIZE("signed-integer-overflow") {
|
| +static inline int32_t RTC_NO_SANITIZE("signed-integer-overflow")
|
| + OverflowingMulS16ByS32ToS32(int16_t a, int32_t b) {
|
| return a * b;
|
| }
|
|
|
|
|