You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
406 B
15 lines
406 B
7 years ago
|
diff --git a/include/atlas_genparse.h b/include/atlas_genparse.h
|
||
|
index 909a38e..1e6d153 100644
|
||
|
--- a/include/atlas_genparse.h
|
||
|
+++ b/include/atlas_genparse.h
|
||
|
@@ -163,7 +163,8 @@ static int GetDoubleArr(char *str, int N, double *d)
|
||
|
if (!str)
|
||
|
break;
|
||
|
str++;
|
||
|
- assert(sscanf(str, "%le", d+i) == 1);
|
||
|
+ if (sscanf(str, "%le", d+i) != 1)
|
||
|
+ break;
|
||
|
i++;
|
||
|
}
|
||
|
return(i);
|