1
0
mirror of https://github.com/signalwire/freeswitch.git synced 2025-04-19 09:47:23 +00:00

[spandsp] scan-build: Fix "Result of operation is garbage or undefined" in rpe_grid_selection()

This commit is contained in:
Andrey Volk 2020-02-20 22:53:34 +04:00
parent ee89cc8aa5
commit 8dd1e1be23

@ -559,7 +559,7 @@ void gsm0610_rpe_encoding(gsm0610_state_t *s,
int16_t *Mc,
int16_t xMc[13])
{
int16_t x[40];
int16_t x[40] = {0};
int16_t xM[13];
int16_t xMp[13];
int16_t mant;