diff options
| -rw-r--r-- | ltests.c | 2 |
1 files changed, 2 insertions, 0 deletions
| @@ -121,6 +121,7 @@ static void warnf (void *ud, const char *msg, int tocont) { | |||
| 121 | strcat(buff, msg); /* add new message to current warning */ | 121 | strcat(buff, msg); /* add new message to current warning */ |
| 122 | if (!tocont) { /* message finished? */ | 122 | if (!tocont) { /* message finished? */ |
| 123 | lua_unlock(L); | 123 | lua_unlock(L); |
| 124 | luaL_checkstack(L, 1, "warn stack space"); | ||
| 124 | lua_getglobal(L, "_WARN"); | 125 | lua_getglobal(L, "_WARN"); |
| 125 | if (!lua_toboolean(L, -1)) | 126 | if (!lua_toboolean(L, -1)) |
| 126 | lua_pop(L, 1); /* ok, no previous unexpected warning */ | 127 | lua_pop(L, 1); /* ok, no previous unexpected warning */ |
| @@ -142,6 +143,7 @@ static void warnf (void *ud, const char *msg, int tocont) { | |||
| 142 | } | 143 | } |
| 143 | case 2: { /* store */ | 144 | case 2: { /* store */ |
| 144 | lua_unlock(L); | 145 | lua_unlock(L); |
| 146 | luaL_checkstack(L, 1, "warn stack space"); | ||
| 145 | lua_pushstring(L, buff); | 147 | lua_pushstring(L, buff); |
| 146 | lua_setglobal(L, "_WARN"); /* assign message to global '_WARN' */ | 148 | lua_setglobal(L, "_WARN"); /* assign message to global '_WARN' */ |
| 147 | lua_lock(L); | 149 | lua_lock(L); |
