X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/f6af1cf0adfb82f29c1cb5fa597ccae7614a482b..c3b6fdfa5b30ad77457a2bae99db69bcd09e2968:/client/scripting.c?ds=sidebyside

diff --git a/client/scripting.c b/client/scripting.c
index aae8c3ca..64fb2a8f 100644
--- a/client/scripting.c
+++ b/client/scripting.c
@@ -407,13 +407,15 @@ static int l_sha1(lua_State *L)
 
 static int l_reveng_models(lua_State *L){
 
-	char *models[80];
+	// This array needs to be adjusted if RevEng adds more crc-models.
+	char *models[100];
 	int count = 0;
 	int in_width = luaL_checkinteger(L, 1);
 	
 	if( in_width > 89 ) return returnToLuaWithError(L,"Width cannot exceed 89, got %d", in_width);
 
-	uint8_t width[80];
+	// This array needs to be adjusted if RevEng adds more crc-models.
+	uint8_t width[100];
 	width[0] = (uint8_t)in_width;
 	int ans = GetModels(models, &count, width);
 	if (!ans) return 0;
@@ -485,7 +487,6 @@ int setLuaPath( lua_State* L, const char* path )
 	return 0; // all done!
 }
 
-
 int set_pm3_libraries(lua_State *L)
 {