Skip to content

Commit e2f5d4a

Browse files
authored
Merge pull request #504 from uyjulian/libcglue_cwd_fixes
fix: use processed variable for open callback
2 parents 2b68e93 + 8a1d66c commit e2f5d4a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ee/libcglue/src/glue.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ int _open(const char *buf, int flags, ...) {
150150
}
151151

152152
info = &(__descriptormap[fd]->info);
153-
iop_fd = _libcglue_fdman_path_ops->open(info, buf, flags, mode);
153+
iop_fd = _libcglue_fdman_path_ops->open(info, t_fname, flags, mode);
154154
if (iop_fd < 0)
155155
{
156156
__fdman_release_descriptor(fd);

0 commit comments

Comments
 (0)