Commit 40a457d4 authored by Bartosz Podrygajlo's avatar Bartosz Podrygajlo

fix(phy): Fix an uninitialized variable bug in dot_product

This was only present on non x86 systems.
Signed-off-by: default avatarBartosz Podrygajlo <bartosz.podrygajlo@openairinterface.org>
parent 70508eba
......@@ -17,7 +17,7 @@
c32_t dot_product(const c16_t *x, const c16_t *y, const uint32_t N, const int output_shift)
{
c32_t ret;
c32_t ret = {0, 0};
const c16_t *end = x + N;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment