Skip to content

Fix for null pointer dereference in L1Decoder

Benjamin Michael Wynne requested to merge bwynne/athena:L1DecoderNull into master

When the L1Decoder runs with CTP emulated, it throws an exception for a null pointer de-reference when calling the decode method.

Since the dereferenced null is never actually used, it doesn't cause a segfault. It's just untidy. This fix just removes the error by having a default empty object to use instead.

Merge request reports