Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 769669
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T18:22:28+00:00 2026-05-14T18:22:28+00:00

In lua, it’s legal to do this : table={} bar if(table[key]==nil) then foo However,

  • 0

In lua, it’s legal to do this :

table={}
bar
if(table[key]==nil) then
foo

However, using C API, I couldn’t find way to check if there’s a nil value on the specified position.

lua_getglobal(L,"table");
lua_gettable(L,key);

If there’s a nil value stored in table[key], lua_gettable would give me the “unprotected error in call to Lua API (attempt to index a nil value)” message.

Is there any way to check if there’s actually something associated with that key, before actually pushing the key to do so ?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-14T18:22:29+00:00Added an answer on May 14, 2026 at 6:22 pm

    You’re calling lua_gettable wrong. It should be:

    lua_getglobal(L, "tableVar");
    lua_pushstring(L, key);   //assuming key is a string
    lua_gettable(L, -2);
    

    The second parameter to lua_gettable is the stack index to the table, not the key.

    If the key is a string, you can call lua_getfield instead:

    lua_getglobal(L, "tableVar");
    lua_getfield(L, -1, key);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've registered LUA api function by using: lua_register( luaState, someFunc, aaa::someFunc); this function has
I have a Lua table and an index function like this: curIndex = 0
In Lua, you can do this: foo = a and b or c and
Why can't this Lua function using a self : be marked local without getting:
I'm using the Lua 5.2 C API. I am trying to get a function
In Lua, using the C interface, given a table, how do I iterate through
Using the Lua C-API is there an efficient way to concatenate two LuaL_Buffer s?
Note : I'm using Lua. So, I'm trying to find out the degrees between
Does Lua have a builtin sum() function? I can't seem to find one, and
In Lua, you can create a table whose keys are themselves tables: t =

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.