summaryrefslogtreecommitdiffhomepage
path: root/contrib/lar/larlib.c
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2009-04-13 15:32:04 +0000
committerJo-Philipp Wich <jow@openwrt.org>2009-04-13 15:32:04 +0000
commitdf11154ba3b73defc5357794dfa84be31f1aec4b (patch)
tree4e95ce850ae321d65005648f549cf374064e1c55 /contrib/lar/larlib.c
parent15798344bfadcece86352c938a8532590cbb3ab2 (diff)
contrib/lar: get rid of hardcoded buffer size in larlib
Diffstat (limited to 'contrib/lar/larlib.c')
-rw-r--r--contrib/lar/larlib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/lar/larlib.c b/contrib/lar/larlib.c
index 5467ed5b9..aa9280a09 100644
--- a/contrib/lar/larlib.c
+++ b/contrib/lar/larlib.c
@@ -145,7 +145,7 @@ static int larlib_mkpath( const char *name, const char *path, char *buffer )
int nlen = strlen(name);
int plen = strlen(path);
- if( (nlen + plen + 1) <= 1024 )
+ if( (nlen + plen + 1) <= LAR_FNAME_BUFFER )
{
strcpy(buffer, path);
@@ -451,10 +451,10 @@ int larlib_findfile( lua_State *L )
int i;
const char *filename = luaL_checkstring( L, 1 );
const char *basepath = luaL_optstring( L, 2, "./" );
- char filepath[1024];
struct stat s;
lar_archive *ar;
lar_member *mb;
+ LAR_FNAME(filepath);
const char *searchpath[3] = { basepath, LUA_LDIR, LUA_CDIR };