From 7ee400182c5445466b4fa0c6e6ccd767a191ced6 Mon Sep 17 00:00:00 2001 From: r3df0xx Date: Thu, 28 Apr 2022 12:58:24 +0300 Subject: [PATCH] Update faac_slh.c free seed global value on decoder alloc --- lib/subghz/protocols/faac_slh.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/subghz/protocols/faac_slh.c b/lib/subghz/protocols/faac_slh.c index a583df85d..6c732f54d 100644 --- a/lib/subghz/protocols/faac_slh.c +++ b/lib/subghz/protocols/faac_slh.c @@ -309,6 +309,7 @@ void* subghz_protocol_decoder_faac_slh_alloc(SubGhzEnvironment* environment) { instance->base.protocol = &subghz_protocol_faac_slh; instance->generic.protocol_name = instance->base.protocol->name; instance->keystore = subghz_environment_get_keystore(environment); + seed_global = 0x0; return instance; }