1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-07-25 19:44:12 -04:00

fixes for ubuntu 16.04

- probably libfreedv/freedv_api.cpp needs more work to avoid crash if
  the user select 700C or 800XA
This commit is contained in:
Davide Gerhard
2019-05-09 14:18:27 +02:00
parent 44668ad425
commit 5ff197bc35
14 changed files with 92 additions and 61 deletions
+1 -1
View File
@@ -863,7 +863,7 @@ void fsk2_demod(struct FSK *fsk, uint8_t rx_bits[], float rx_sd[], COMP fsk_in[]
/* Check for NaNs in the fine timing estimate, return if found */
/* otherwise segfaults happen */
if( isnan(t_c.real) || isnan(t_c.imag)){
if( std::isnan(t_c.real) || std::isnan(t_c.imag)){
return;
}