Sfoglia il codice sorgente

Made newDataView size optional

Engineer Smith 1 anno fa
parent
commit
f8d86a78fc
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      src/modules/data/wrap_DataModule.cpp

+ 1 - 1
src/modules/data/wrap_DataModule.cpp

@@ -57,7 +57,7 @@ int w_newDataView(lua_State *L)
 	Data *data = luax_checkdata(L, 1);
 
 	lua_Integer offset = luaL_checkinteger(L, 2);
-	lua_Integer size = luaL_checkinteger(L, 3);
+	lua_Integer size = luaL_optinteger(L, 3, data->getSize() - offset);
 
 	if (offset < 0 || size < 0)
 		return luaL_error(L, "DataView offset and size must not be negative.");