Skip to content

Commit

Permalink
Fix #530
Browse files Browse the repository at this point in the history
  • Loading branch information
radare committed Jan 12, 2014
1 parent 0e9cd2e commit c56bb2c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion binr/radare2/radare2.c
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ int main(int argc, char **argv, char **envp) {
optind++;
file = r_str_concat (file, ptr);
if (optind <argc)
strcat (file, " ");
file = r_str_concat (file, " ");
while (optind < argc) {
file = r_str_concat (file, argv[optind]);
optind++;
Expand Down
2 changes: 1 addition & 1 deletion libr/cons/grep.c
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ R_API void r_cons_grep(const char *str) {
case '?': str++; cons->grep.counter = 1;
if (*str=='?') {
r_cons_grep_help ();
return;
return;
}
break;
default: goto while_end;
Expand Down

0 comments on commit c56bb2c

Please sign in to comment.