You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
100 lines
2.8 KiB
100 lines
2.8 KiB
6 years ago
|
diff -Naur cardpeek-0.8.4.orig/lua_bytes.c cardpeek-0.8.4/lua_bytes.c
|
||
|
--- cardpeek-0.8.4.orig/lua_bytes.c 2015-03-08 22:33:10.000000000 +0100
|
||
|
+++ cardpeek-0.8.4/lua_bytes.c 2016-07-26 14:56:47.221522330 +0200
|
||
|
@@ -116,7 +116,7 @@
|
||
|
|
||
|
static int subr_bytes_new(lua_State *L)
|
||
|
{
|
||
|
- int width = luaL_checkint(L, 1);
|
||
|
+ int width = luaL_checkinteger(L, 1);
|
||
|
int n = lua_gettop(L);
|
||
|
bytestring_t *bs;
|
||
|
|
||
|
@@ -259,7 +259,7 @@
|
||
|
b_index = 0;
|
||
|
else
|
||
|
{
|
||
|
- b_index=luaL_checkint(L,2);
|
||
|
+ b_index=luaL_checkinteger(L,2);
|
||
|
if (b_index<0) b_index = 0;
|
||
|
}
|
||
|
|
||
|
@@ -267,7 +267,7 @@
|
||
|
e_index = b_index;
|
||
|
else
|
||
|
{
|
||
|
- e_index=luaL_checkint(L,2);
|
||
|
+ e_index=luaL_checkinteger(L,2);
|
||
|
if (e_index>=(int)bytestring_get_size(bs)) e_index = bytestring_get_size(bs)-1;
|
||
|
}
|
||
|
|
||
|
@@ -293,13 +293,13 @@
|
||
|
unsigned i;
|
||
|
unsigned char c;
|
||
|
|
||
|
- b_index=(unsigned)luaL_checkint(L,2);
|
||
|
+ b_index=(unsigned)luaL_checkinteger(L,2);
|
||
|
|
||
|
e_index = b_index + lua_gettop(L)-3;
|
||
|
|
||
|
for (i=b_index;i<=e_index;i++)
|
||
|
{
|
||
|
- c = (unsigned char)luaL_checkint(L,i-b_index+3);
|
||
|
+ c = (unsigned char)luaL_checkinteger(L,i-b_index+3);
|
||
|
if (i<bytestring_get_size(bs))
|
||
|
{
|
||
|
bytestring_set_element(bs,i,c);
|
||
|
@@ -324,8 +324,8 @@
|
||
|
static int subr_bytes_pad_left(lua_State *L)
|
||
|
{
|
||
|
bytestring_t *bs = bytestring_duplicate(luaL_check_bytestring(L, 1));
|
||
|
- unsigned pad_length = luaL_checkint(L,2);
|
||
|
- unsigned pad_value = luaL_checkint(L,3);
|
||
|
+ unsigned pad_length = luaL_checkinteger(L,2);
|
||
|
+ unsigned pad_value = luaL_checkinteger(L,3);
|
||
|
if (bytestring_pad_left(bs,pad_length,pad_value)!=BYTESTRING_OK)
|
||
|
{
|
||
|
bytestring_free(bs);
|
||
|
@@ -340,8 +340,8 @@
|
||
|
static int subr_bytes_pad_right(lua_State *L)
|
||
|
{
|
||
|
bytestring_t *bs = bytestring_duplicate(luaL_check_bytestring(L, 1));
|
||
|
- unsigned pad_length = luaL_checkint(L,2);
|
||
|
- unsigned pad_value = luaL_checkint(L,3);
|
||
|
+ unsigned pad_length = luaL_checkinteger(L,2);
|
||
|
+ unsigned pad_value = luaL_checkinteger(L,3);
|
||
|
if (bytestring_pad_right(bs,pad_length,pad_value)!=BYTESTRING_OK)
|
||
|
{
|
||
|
bytestring_free(bs);
|
||
|
@@ -376,12 +376,12 @@
|
||
|
static int subr_bytes_sub(lua_State *L)
|
||
|
{
|
||
|
bytestring_t *bs = luaL_check_bytestring(L, 1);
|
||
|
- int start=luaL_checkint(L,2);
|
||
|
+ int start=luaL_checkinteger(L,2);
|
||
|
int end=-1;
|
||
|
bytestring_t *ret;
|
||
|
|
||
|
if (lua_gettop(L)>2)
|
||
|
- end=luaL_checkint(L,3);
|
||
|
+ end=luaL_checkinteger(L,3);
|
||
|
if (start<0)
|
||
|
start=bytestring_get_size(bs)+start;
|
||
|
if (end<0)
|
||
|
@@ -431,13 +431,13 @@
|
||
|
"\tchange bytes.convert(A,B) to bytes.convert(B,A)\n"
|
||
|
"\tThis warning will only appear once.");
|
||
|
}
|
||
|
- width=luaL_checkint(L,1);
|
||
|
+ width=luaL_checkinteger(L,1);
|
||
|
bs = luaL_check_bytestring(L, 2);
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
bs = luaL_check_bytestring(L, 1);
|
||
|
- width=luaL_checkint(L,2);
|
||
|
+ width=luaL_checkinteger(L,2);
|
||
|
}
|
||
|
|
||
|
if (width!=8 && width!=4 && width!=1)
|