Fixed segmentation fault in when memory allocation fails (issue #92)

This commit is contained in:
Benoit Blanchon
2015-08-01 16:57:29 +02:00
6 changed files with 141 additions and 111 deletions

View File

@@ -24,6 +24,11 @@ The `String` class is **bad** because it uses dynamic memory allocation.
Compared to static allocation, it compiles to a bigger, slower program, and is less predictable.
You certainly don't want that in an embedded environment!
v4.6
----
* Fixed segmentation fault in `DynamicJsonBuffer` when memory allocation fails (issue #92)
v4.5
----