summaryrefslogtreecommitdiff
path: root/json.c
diff options
context:
space:
mode:
authorGary E. Miller <gem@rellim.com>2018-02-13 15:33:17 -0800
committerGary E. Miller <gem@rellim.com>2018-02-13 15:33:17 -0800
commit9a6d35fea5bb60aa50ff0fa3f3d986361168446d (patch)
tree4fadadf3cfce39732d07b43adacd0df4fa08cae7 /json.c
parent8138b291d064af5dc194d089ae99edcdf9fa540c (diff)
downloadgpsd-9a6d35fea5bb60aa50ff0fa3f3d986361168446d.tar.gz
JSON: note failure to handle doubles that are NaNs.
Diffstat (limited to 'json.c')
-rw-r--r--json.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/json.c b/json.c
index f5b59fba..dd15cbf7 100644
--- a/json.c
+++ b/json.c
@@ -30,7 +30,7 @@ will match the right spec against the actual data.
recognize the JSON "null" value. Secondly, arrays may not have
character values as elements (this limitation could be easily removed
if required). Third, all elements of an array must be of the same
-type.
+type. Fourth, it can not handle NaN's in doubles (Issue 53150).
There are separate entry points for beginning a parse of either
JSON object or a JSON array. JSON "float" quantities are actually