Throw out of index error in struct:field method (#243)

This commit is contained in:
qwreey 2024-11-09 12:44:55 +00:00
parent 230632b1ca
commit b191218993
No known key found for this signature in database
GPG key ID: D28DB79297A214BD

View file

@ -206,7 +206,9 @@ impl LuaUserData for CStructInfo {
"field",
|lua, (this, field_index): (LuaAnyUserData, usize)| {
let field_table = get_field_table(lua, &this)?;
field_table.raw_get::<_, LuaAnyUserData>(field_index + 1)
field_table
.raw_get::<_, Option<LuaAnyUserData>>(field_index + 1)?
.ok_or_else(|| LuaError::external("Out of index"))
},
);
}