Bug 2066182 Comment 2 Edit History

Note: The actual edited comment in the bug view page will always show the original commenter’s name and original timestamp.

emilio, maybe worth a look from you since you looked at bug 2010608 - do you think this is the same crash that we were investigating there, or something new/different?

The patch we landed over there was a speculative null-check on the *return value* of `mNamedElements.Get(aTransitionName);`.  But in the crash in comment 0 here, we seem to be crashing with a near-null deref *while executing* `mNamedElements.Get(aTransitionName);` (if the backtrace is to be believed).

I wonder if that means the `this` object itself (i.e. the `ViewTransition`) is nullptr somehow?
emilio, maybe worth a look from you since you looked at bug 2010608 - do you think this is the same crash that we were investigating there, or something new/different?

The patch we landed over there was a speculative null-check on the *return value* of `mNamedElements.Get(aTransitionName);`

But in the crash in comment 0 here, we seem to be crashing with a near-null deref *while executing* `mNamedElements.Get(aTransitionName);` (if the backtrace is to be believed).

I wonder if that means the `this` object itself (i.e. the `ViewTransition`) is nullptr somehow?

Back to Bug 2066182 Comment 2