Skip to content

Commit

Permalink
Fix #1432
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Oct 28, 2016
1 parent 50855c3 commit 409cb7c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions release-notes/VERSION
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ Project: jackson-databind
(reported by Rob W)
#1411: MapSerializer._orderEntries should check for null keys
(reported by Jörn H)
#1432: Off by 1 bug in PropertyValueBuffer
(reported by Kevin D)

2.7.8 (26-Sep-2016)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -220,10 +220,10 @@ public boolean assignParameter(SettableBeanProperty prop, Object value)
}
} else {
if (!_paramsSeenBig.get(ix)) {
_paramsSeenBig.set(ix);
if (--_paramsNeeded <= 0) {
return true;
}
_paramsSeenBig.set(ix);
}
}
return false;
Expand Down

0 comments on commit 409cb7c

Please sign in to comment.