]> Cypherpunks repositories - gostls13.git/commit
encoding/json: fix decoding of JSON null values
authorDidier Spezia <didier.06@gmail.com>
Tue, 28 Apr 2015 11:20:19 +0000 (11:20 +0000)
committerRuss Cox <rsc@golang.org>
Wed, 22 Jul 2015 15:39:54 +0000 (15:39 +0000)
commit1a99ba55df902a2657d1ccfc52a60024c22dba98
treefbfdf0b27f08479365f476e4a3d7c86cab754b53
parent1421bc10a4f61f92f3a3790a599fd7a02e7909d7
encoding/json: fix decoding of JSON null values

JSON decoding currently fails for null values bound to any type
which does implement the JSON Unmarshaler interface without checking
for null values (such as time.Time).

It also fails for types implementing the TextUnmarshaler interface.

The expected behavior of the JSON decoding engine in such case is
to process null by keeping the value unchanged without producing
any error.

Make sure null values are handled by the decoding engine itself,
and never passed to the UnmarshalText or UnmarshalJSON methods.

Fixes #9037

Change-Id: I261d85587ba543ef6f1815555b2af9311034d5bb
Reviewed-on: https://go-review.googlesource.com/9376
Reviewed-by: Russ Cox <rsc@golang.org>
src/encoding/json/decode.go
src/encoding/json/decode_test.go