From: ksjoberg Date: Tue, 6 Apr 2010 13:41:37 +0000 (+0000) Subject: Fix issue 14: mandemod and lf em4x em410xread crashes the proxmark3 client app X-Git-Tag: v1.0.0~279 X-Git-Url: http://cvs.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/commitdiff_plain/15cdabd474e7c90bc86fc8c1f2a1ca854ea9f6da?hp=15cdabd474e7c90bc86fc8c1f2a1ca854ea9f6da Fix issue 14: mandemod and lf em4x em410xread crashes the proxmark3 client app This fix is quick-and-dirty since it only reduces the amount of stackspace allocated by changing the data type of the array to uint8_t instead of the 32 bit integers. The reduced number of bits is OK since only (at most) 2 of the available bits are used in each element. At least array bit utilization is improved from 6.66% to 25% :) Large structures such as these should probably be malloc()ed. ---