X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/fe7bfa785696615de44fd896214182446a664646..d16d20b1fbb74d5b273005a48d39da24f8d54858:/client/proxmark3.c diff --git a/client/proxmark3.c b/client/proxmark3.c index 949013ec..ae4ad7c0 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,6 +196,7 @@ 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]);