X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/4db2af08cdd040abc9388e95033257bfe878a044..77d1a423d575cfce6cbc46ff8e2217db2b6483d9:/client/cmdparser.c?ds=sidebyside

diff --git a/client/cmdparser.c b/client/cmdparser.c
index 90521931..b622df4f 100644
--- a/client/cmdparser.c
+++ b/client/cmdparser.c
@@ -43,7 +43,7 @@ int CmdsParse(const command_t Commands[], const char *Cmd)
   }
   char cmd_name[32];
   int len = 0;
-  memset(cmd_name, 0, 32);
+  memset(cmd_name, 0, sizeof(cmd_name));
   sscanf(Cmd, "%31s%n", cmd_name, &len);
   int i = 0;
   while (Commands[i].Name && strcmp(Commands[i].Name, cmd_name))