Skip to content

Commit

Permalink
AVRO-1754. C++ ValiditingDecoder handles null incorrectly
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.apache.org/repos/asf/avro/trunk@1716757 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
thiru-mg committed Nov 26, 2015
1 parent bdc9848 commit 5662cbb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,8 @@ Avro 1.8.0 (10 August 2014)
AVRO-1755. Java: avro-mapred should not depend on avro-ipc:test.
(Clément MAHTIEU via tomwhite)

AVRO-1754. C++ ValiditingDecoder handles null incorrectly. (John McClean via thiru)

Avro 1.7.7 (23 July 2014)

NEW FEATURES
Expand Down
1 change: 1 addition & 0 deletions lang/c++/impl/parsing/ValidatingCodec.cc
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,7 @@ template <typename P>
void ValidatingDecoder<P>::decodeNull()
{
parser.advance(Symbol::sNull);
base->decodeNull();
}

template <typename P>
Expand Down

0 comments on commit 5662cbb

Please sign in to comment.