Files
meta-openwrt/recipes-support/lua/lua5.1/luaorg_2.patch
Daniel F. Dickinson 0ef133164f tree-wide: Reorganize recipes and images
We move packages out of core that are not core
(and put them in approprite OE category dirs).
We split openwrt-image-base into openwrt-image-minimal
(core openwrt with network but no gui) and
openwrt-image-base (core openwrt with luci).
We move the non-core images out of core.

Closes https://github.com/kraj/meta-openwrt/issues/11

Signed-off-by: Daniel F. Dickinson <cshored@thecshore.com>
2018-01-18 20:49:36 -08:00

45 lines
1.2 KiB
Diff

lua.org patch 2 for lua-5.1.5.
from http://www.lua.org/bugs.html
Upstream-Status: Backport
Signed-off-by: Marko Lindqvist <cazfi74@gmail.com>
diff -Nurd lua-5.1.5/src/lzio.c lua-5.1.5/src/lzio.c
--- lua-5.1.5/src/lzio.c 2007-12-27 15:02:25.000000000 +0200
+++ lua-5.1.5/src/lzio.c 2013-10-25 11:32:45.773536572 +0300
@@ -22,10 +22,14 @@
size_t size;
lua_State *L = z->L;
const char *buff;
+ if (z->eoz) return EOZ;
lua_unlock(L);
buff = z->reader(L, z->data, &size);
lua_lock(L);
- if (buff == NULL || size == 0) return EOZ;
+ if (buff == NULL || size == 0) {
+ z->eoz = 1; /* avoid calling reader function next time */
+ return EOZ;
+ }
z->n = size - 1;
z->p = buff;
return char2int(*(z->p++));
@@ -51,6 +55,7 @@
z->data = data;
z->n = 0;
z->p = NULL;
+ z->eoz = 0;
}
diff -Nurd lua-5.1.5/src/lzio.h lua-5.1.5/src/lzio.h
--- lua-5.1.5/src/lzio.h 2007-12-27 15:02:25.000000000 +0200
+++ lua-5.1.5/src/lzio.h 2013-10-25 11:31:50.301537789 +0300
@@ -59,6 +59,7 @@
lua_Reader reader;
void* data; /* additional data */
lua_State *L; /* Lua state (for reader) */
+ int eoz; /* true if reader has no more data */
};