Eric Myhre
Eric Myhre
I think there's a race condition somewhere around the ptrace detacting that causes a hang, and though I'm preeety sure it's an artifact of the test rather than gosh main...
I just want to leave a note here that I found another place where this comes up: if using [unions](https://github.com/polydawn/refmt/pull/30), you'll also get non-pointer types back from an unmarshal, and...
I was briefly considering the idea of adding some [Cheneyian optionals](http://dave.cheney.net/2014/10/17/functional-options-for-friendly-apis) to the `Unmarshal` call itself as a solution to the original issue described, but now that it's clear that...
So to recap, the matrix of transforms that seem potentially reasonable here are: - when populating a struct from a null token: - A1: results in zero struct (this can...
Another question came to mind: Do we want these behaviors to be specified at the site of *fields* (as omitempty is), or on *types*?
Nothing like it yet. One implementation approach that might be interesting would be storing a `[]Token`, in contrast to json.RawMessage's `[]byte` approach. This would save tokenizing twice, assuming you're going...
This is super awesome. I can't wait to merge these fixes as well as the fuzzing! I'm a doof for not seeing this in the PR queue earlier, and now...
I cherry-picked 2e9ba99 and it is now f5ce9bb and on master. :taco:
Hey, thanks for reporting. Just to let you know, I've seen this, and started looking into it, but I'm feeling a bit under the weather and fixes might take a...
I went ahead and added the basic guardrails around overly-huge allocs in the byte and string paths in the cbor decoder. It fixes all the crashers in the dataset you...