Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ca2b8153 authored by Rivukanta Bhattacharya's avatar Rivukanta Bhattacharya
Browse files

LVM Reverb module : Fix a crash

Bug: 176109557
Test: reverb_test with build_and_run_all_unit_tests_reverb.sh
Change-Id: I3ed13230b7b949711246005f9248de0db3fa32b5
parent 0ba11a6b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -340,7 +340,7 @@ int main(int argc, const char* argv[]) {
    const int outChannelCount = (channelCount == 1 ? 2 : channelCount);

    std::vector<short> in(frameLength * maxChannelCount);
    std::vector<short> out(frameLength * maxChannelCount);
    std::vector<short> out(frameLength * outChannelCount);
    std::vector<float> floatIn(frameLength * channelCount);
    std::vector<float> floatOut(frameLength * outChannelCount);