• Didier Spezia's avatar
    encoding/json: fix decoding of JSON null values · 1a99ba55
    Didier Spezia authored
    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/9376Reviewed-by: 's avatarRuss Cox <rsc@golang.org>
    1a99ba55
Name
Last commit
Last update
..
ascii85 Loading commit data...
asn1 Loading commit data...
base32 Loading commit data...
base64 Loading commit data...
binary Loading commit data...
csv Loading commit data...
gob Loading commit data...
hex Loading commit data...
json Loading commit data...
pem Loading commit data...
xml Loading commit data...
encoding.go Loading commit data...