Skip to content

Commit

Permalink
Remove useless static from asn1.c
Browse files Browse the repository at this point in the history
  • Loading branch information
wargio committed Apr 18, 2024
1 parent 2cacf88 commit a3ddbd1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion librz/util/asn1.c
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ RZ_API void rz_asn1_to_strbuf(RZ_NULLABLE RzASN1Object *object, ut32 depth, bool
}
// this shall not be freed. it's a pointer into the buffer.
RzASN1String *asn1str = NULL;
static char temp_name[4096] = { 0 };
char temp_name[4096] = { 0 };
const char *name = "";
const char *string = "";

Expand Down

0 comments on commit a3ddbd1

Please sign in to comment.