forked from pool/lua54
b5aa338636
- execresult.patch: Inspect errno only after failure OBS-URL: https://build.opensuse.org/request/show/1131639 OBS-URL: https://build.opensuse.org/package/show/devel:languages:lua/lua54?expand=0&rev=90
16 lines
539 B
Diff
16 lines
539 B
Diff
Inspect errno only after failure
|
|
|
|
Index: lua-5.4.6/src/lauxlib.c
|
|
===================================================================
|
|
--- lua-5.4.6.orig/src/lauxlib.c
|
|
+++ lua-5.4.6/src/lauxlib.c
|
|
@@ -283,7 +283,7 @@ LUALIB_API int luaL_fileresult (lua_Stat
|
|
|
|
|
|
LUALIB_API int luaL_execresult (lua_State *L, int stat) {
|
|
- if (stat != 0 && errno != 0) /* error with an 'errno'? */
|
|
+ if (stat == -1) /* error with an 'errno'? */
|
|
return luaL_fileresult(L, 0, NULL);
|
|
else {
|
|
const char *what = "exit"; /* type of termination */
|