Add NULL check, just to be safe.
This commit is contained in:
parent
1d10fa2019
commit
5d92a3c39b
@ -694,7 +694,7 @@ void subghz_protocol_decoder_genie_get_string(void* context, FuriString* output)
|
|||||||
// If we are in the genie thread (running the Genie Recorder app),
|
// If we are in the genie thread (running the Genie Recorder app),
|
||||||
// output the protocol & key, then exit without looking for the next code.
|
// output the protocol & key, then exit without looking for the next code.
|
||||||
const char* name = furi_thread_get_name(furi_thread_get_current_id());
|
const char* name = furi_thread_get_name(furi_thread_get_current_id());
|
||||||
if(strcmp(name, "genie-rx") == 0) {
|
if(name != NULL && strcmp(name, "genie-rx") == 0) {
|
||||||
furi_string_cat_printf(
|
furi_string_cat_printf(
|
||||||
output,
|
output,
|
||||||
"%s %dbit\r\n"
|
"%s %dbit\r\n"
|
||||||
|
Loading…
Reference in New Issue
Block a user