diff options
author | scuri <scuri> | 2010-07-18 03:04:23 +0000 |
---|---|---|
committer | scuri <scuri> | 2010-07-18 03:04:23 +0000 |
commit | 34f4dcea9afc19dcaf929b0ef4170a6b6940ab42 (patch) | |
tree | 05d191fb216ae110b8d2d0121c239a7aed48ca4d /src/lua5/imlua_image.c | |
parent | c315a7256b42812a13e80e3bc4a48a2dc1b7170d (diff) |
*** empty log message ***
Diffstat (limited to 'src/lua5/imlua_image.c')
-rw-r--r-- | src/lua5/imlua_image.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lua5/imlua_image.c b/src/lua5/imlua_image.c index f3c8855..5f84b97 100644 --- a/src/lua5/imlua_image.c +++ b/src/lua5/imlua_image.c @@ -2,7 +2,7 @@ * \brief IM Lua 5 Binding * * See Copyright Notice in im_lib.h - * $Id: imlua_image.c,v 1.11 2010/06/07 20:59:32 scuri Exp $ + * $Id: imlua_image.c,v 1.12 2010/07/18 03:04:23 scuri Exp $ */ #include <string.h> @@ -444,7 +444,7 @@ static int imluaImageGetAttributeList (lua_State *L) imImageGetAttributeList(image, attrib, &attrib_count); - lua_newtable(L); + lua_createtable(L, attrib_count, 0); for (i = 0; i < attrib_count; i++) { lua_pushstring(L, attrib[i]); |