Skip to content

Commit

Permalink
Remove useless static from asn1.c (#4440)
Browse files Browse the repository at this point in the history
  • Loading branch information
wargio authored Apr 18, 2024
1 parent be83c02 commit 77f8f80
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 77f8f80

Please sign in to comment.