rtl_fm: non-gnu str functions

Signed-off-by: Steve Markgraf <steve@steve-m.de>
This commit is contained in:
Kyle Keen 2012-12-10 17:19:07 -05:00 committed by Steve Markgraf
parent 562fd7e8e3
commit 71b254a238
1 changed files with 2 additions and 1 deletions

View File

@ -576,7 +576,8 @@ double atofs(char* f)
{
char* chop;
double suff = 1.0;
chop = strndup(f, strlen(f)-1);
chop = malloc((strlen(f)+1)*sizeof(char));
strncpy(chop, f, strlen(f)-1);
switch (f[strlen(f)-1]) {
case 'G':
suff *= 1e3;