X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/9680b11d9e4b526102bb32571bab7c95ae804ab8..90677ad99bb27055b1e06429b8731db628d3b8ae:/client/cmddata.c diff --git a/client/cmddata.c b/client/cmddata.c index 7854fa51..2b82c367 100644 --- a/client/cmddata.c +++ b/client/cmddata.c @@ -400,8 +400,8 @@ int CmdAskEM410xDemod(const char *Cmd) PrintAndLog(" : data askem410xdemod 64 1 0 = demod an EM410x Tag ID from GraphBuffer using a clock of RF/64 and inverting data and allowing 0 demod errors"); return 0; } - uint32_t hi; - uint64_t lo; + uint32_t hi = 0; + uint64_t lo = 0; if (AskEm410xDemod(Cmd, &hi, &lo)) { PrintAndLog("EM410x pattern found: "); printEM410x(hi, lo);