diff options
author | Benoit Germain <bnt.germain@gmail.com> | 2023-08-09 12:15:54 +0200 |
---|---|---|
committer | Benoit Germain <bnt.germain@gmail.com> | 2023-08-09 12:15:54 +0200 |
commit | ad7258f68ce525845508fc0c4a329c282982ffa0 (patch) | |
tree | f6eb169911eef0a776f3b3b00eeb2b7d824ebbd7 /src/deep.c | |
parent | d73f4cee37b0a43edadf9709289798ee4bfccc0e (diff) | |
download | lanes-ad7258f68ce525845508fc0c4a329c282982ffa0.tar.gz lanes-ad7258f68ce525845508fc0c4a329c282982ffa0.tar.bz2 lanes-ad7258f68ce525845508fc0c4a329c282982ffa0.zip |
new .internal_allocator configuration IUNTESTED)
new configuration option .internal_allocator to help LuaJIT users. THIS IS YET UNTESTED, USE AT YOUR OWN RISKS.
Diffstat (limited to 'src/deep.c')
-rw-r--r-- | src/deep.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -389,7 +389,7 @@ int luaG_newdeepuserdata( lua_State* L, luaG_IdFunction idfunc, int nuv_) | |||
389 | DeepPrelude* prelude = idfunc( L, eDO_new); | 389 | DeepPrelude* prelude = idfunc( L, eDO_new); |
390 | if( prelude == NULL) | 390 | if( prelude == NULL) |
391 | { | 391 | { |
392 | luaL_error( L, "idfunc(eDO_new) failed to create deep userdata (out of memory)"); | 392 | return luaL_error( L, "idfunc(eDO_new) failed to create deep userdata (out of memory)"); |
393 | } | 393 | } |
394 | if( prelude->magic.value != DEEP_VERSION.value) | 394 | if( prelude->magic.value != DEEP_VERSION.value) |
395 | { | 395 | { |