You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Yes @robotmrv this does look like a flaw. Thank you for reporting this!
Let me see what happens if I try fix -- I am bit hesitant to make change in a patch so probably needs to in 2.15(.0).
This although method appears to be used for optimization and should not change behavior.
cowtowncoder
changed the title
Possible typo in com.fasterxml.jackson.core.filter.TokenFilterContext#skipParentChecks
Possible flaw in TokenFilterContext#skipParentChecks()Jan 28, 2023
Ok no test failures; seems safe enough so merged fix in, to be included in 2.15.0.
(too bad there's no unit test for this but... if there was, but wouldn't have been)
There is a code in
com.fasterxml.jackson.core.filter.TokenFilterContext#skipParentChecks
since
_parent
is a field looks like there is typo in the loop body_parent._filter = null;
->ctxt._filter = null;
This is actual for at least 2.13, 2.14, 2.15 branches
The text was updated successfully, but these errors were encountered: