X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/fe7bfa785696615de44fd896214182446a664646..50d6e4abc154916cb4cf62f294700181bfc2abbc:/client/proxmark3.c diff --git a/client/proxmark3.c b/client/proxmark3.c index 949013ec..5ac7cd0e 100644 --- a/client/proxmark3.c +++ b/client/proxmark3.c @@ -144,7 +144,7 @@ static void *main_loop(void *targ) { nl = strrchr(script_cmd_buf, '\n'); if (nl) *nl = '\0'; - if ((cmd = (char*) malloc(strlen(script_cmd_buf))) != NULL) + if ((cmd = (char*) malloc(strlen(script_cmd_buf) + 1)) != NULL) { memset(cmd, 0, strlen(script_cmd_buf)); strcpy(cmd, script_cmd_buf); @@ -196,7 +196,8 @@ static void *main_loop(void *targ) { } int main(int argc, char* argv[]) { - + srand(time(0)); + if (argc < 2) { printf("syntax: %s \n\n",argv[0]); return 1;