Skip to content

Commit

Permalink
Fix #659 - ?
Browse files Browse the repository at this point in the history
  • Loading branch information
radare committed Feb 28, 2014
1 parent 081e0b7 commit 16449dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libr/anal/sign.c
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ R_API int r_sign_add(RSign *sig, RAnal *anal, int type, const char *name, const
free (si);
break;
}
len = strlen (data)+1;
len = strlen (data)+4; // \xf0
si->bytes = (ut8 *)malloc (R_MAX (len, 4));
si->mask = (ut8 *)malloc (R_MAX (len, 4));
if (si->bytes == NULL || si->mask == NULL) {
Expand Down

0 comments on commit 16449dd

Please sign in to comment.