aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2019-04-08 09:09:07 -0500
committerGitHub <noreply@github.com>2019-04-08 09:09:07 -0500
commit1f99a6b9799e3eafe4c534f543547b2f0adaf423 (patch)
treeea03c5625956b1ca1271e20dc18e8bb7e59eaedf /src
parent166d8f08b3bb70b878664a6689904924c72ab7d6 (diff)
parentc53ed53659f6fbbc1257ee028d4b6e8f06193fdb (diff)
downloadmilf-rs-1f99a6b9799e3eafe4c534f543547b2f0adaf423.tar.gz
milf-rs-1f99a6b9799e3eafe4c534f543547b2f0adaf423.zip
Merge pull request #299 from ehuss/fix-float-suffix
Fix float with invalid suffix.
Diffstat (limited to 'src')
-rw-r--r--src/de.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/de.rs b/src/de.rs
index 6b7c43b..b23f03f 100644
--- a/src/de.rs
+++ b/src/de.rs
@@ -1396,6 +1396,8 @@ impl<'a> Deserializer<'a> {
return Err(self.error(start, ErrorKind::NumberInvalid));
}
exponent = Some(a);
+ } else if !suffix.is_empty() {
+ return Err(self.error(start, ErrorKind::NumberInvalid));
}
let mut number = integral