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:
+1
-1
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user