[FEC] Fixed memory leak (#646)

This commit is contained in:
jgromes 2023-07-07 20:33:48 +02:00
parent a78c415616
commit ccbec2c7bd

View file

@ -246,6 +246,8 @@ uint32_t RadioLibBCH::encode(uint32_t dataword) {
} }
} }
delete[] recd;
return(res); return(res);
} }