fix: zero entire public key array instead of only first byte (#9619)

This commit is contained in:
Wessel
2026-02-12 15:33:57 +01:00
committed by GitHub
co-authored by GitHub
parent 38c7ad0ed6
commit 1a7f560372
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1772,7 +1772,7 @@ void NodeDB::addFromContact(meshtastic_SharedContact contact)
info->has_device_metrics = false;
info->has_position = false;
info->user.public_key.size = 0;
info->user.public_key.bytes[0] = 0;
memset(info->user.public_key.bytes, 0, sizeof(info->user.public_key.bytes));
} else {
/* Clients are sending add_contact before every text message DM (because clients may hold a larger node database with
* public keys than the radio holds). However, we don't want to update last_heard just because we sent someone a DM!