Skip to content

Commit 8a1d66c

Browse files
committed
fix: use processed variable for open callback
1 parent 2b68e93 commit 8a1d66c

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)