cppcheck ctunullpointerOutOfMemory

This commit is contained in:
Philippe Teuwen 2025-03-23 23:58:43 +01:00
commit d5ecc626ab

View file

@ -58,6 +58,9 @@ static int CmdHelp(const char *Cmd);
static int getFDXBBits(uint64_t national_code, uint16_t country_code, uint8_t is_animal, uint8_t is_extended, uint32_t extended, uint8_t *bits) { static int getFDXBBits(uint64_t national_code, uint16_t country_code, uint8_t is_animal, uint8_t is_extended, uint32_t extended, uint8_t *bits) {
if (bits == NULL) {
return PM3_ESOFT;
}
// add preamble ten 0x00 and one 0x01 // add preamble ten 0x00 and one 0x01
memset(bits, 0x00, 10); memset(bits, 0x00, 10);
bits[10] = 1; bits[10] = 1;