The following GCC warning is emitted during compile:
MFRC522Extended.cpp:824: warning: ordered comparison of pointer with integer zero [-Wextra]
if (backData && (backLen > 0)) {
^
Since backLen is a pointer, it will be always positive. However, for fixing it I don't know if it's a bug
- not being
backLen != nullptr or
- not being
*backLen > 0 or
- just a slight oversight and the comparison is unnecessary.
The same is also in line 847.