diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/lfs.c | 16 |
1 files changed, 10 insertions, 6 deletions
| @@ -82,6 +82,12 @@ | |||
| 82 | #define getcwd_error "Function 'getcwd' not provided by system" | 82 | #define getcwd_error "Function 'getcwd' not provided by system" |
| 83 | #else | 83 | #else |
| 84 | #define getcwd_error strerror(errno) | 84 | #define getcwd_error strerror(errno) |
| 85 | #ifdef _WIN32 | ||
| 86 | #define LFS_MAXPATHLEN MAX_PATH // MAX_PATH seems to be 260. Seems kind of small. Is there a better one? | ||
| 87 | #else | ||
| 88 | #include <sys/param.h> // for MAXPATHLEN | ||
| 89 | #define LFS_MAXPATHLEN MAXPATHLEN | ||
| 90 | #endif | ||
| 85 | #endif | 91 | #endif |
| 86 | 92 | ||
| 87 | #define DIR_METATABLE "directory metatable" | 93 | #define DIR_METATABLE "directory metatable" |
| @@ -160,13 +166,11 @@ static int change_dir (lua_State *L) { | |||
| 160 | ** If unable to get the current directory, it returns nil | 166 | ** If unable to get the current directory, it returns nil |
| 161 | ** and a string describing the error | 167 | ** and a string describing the error |
| 162 | */ | 168 | */ |
| 163 | #ifndef PATH_MAX | ||
| 164 | #define PATH_MAX 4096 | ||
| 165 | #endif | ||
| 166 | |||
| 167 | static int get_dir (lua_State *L) { | 169 | static int get_dir (lua_State *L) { |
| 168 | char path[PATH_MAX]; | 170 | char *path; |
| 169 | if (getcwd((char *)path, PATH_MAX) == NULL) { | 171 | // Passing (NULL, 0) is not guaranteed to work. Use a temp buffer and size instead. |
| 172 | char buf[LFS_MAXPATHLEN]; | ||
| 173 | if ((path = getcwd(buf, LFS_MAXPATHLEN)) == NULL) { | ||
| 170 | lua_pushnil(L); | 174 | lua_pushnil(L); |
| 171 | lua_pushstring(L, getcwd_error); | 175 | lua_pushstring(L, getcwd_error); |
| 172 | return 2; | 176 | return 2; |
