mirror of
https://github.com/lune-org/lune.git
synced 2025-04-05 19:10:57 +01:00
Throw out of index error in struct:field method (#243)
This commit is contained in:
parent
230632b1ca
commit
b191218993
1 changed files with 3 additions and 1 deletions
|
@ -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"))
|
||||
},
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue