Opened 2 months ago
Closed 2 months ago
#19056 closed bug (duplicate)
linkat() does not fail with EBADF when it should
Reported by: | bhaible | Owned by: | nobody |
---|---|---|---|
Priority: | normal | Milestone: | Unscheduled |
Component: | System/POSIX | Version: | R1/beta5 |
Keywords: | Cc: | ||
Blocked By: | #19048 | Blocking: | |
Platform: | All |
Description
POSIX https://pubs.opengroup.org/onlinepubs/9799919799/functions/link.html specifies that the linkat() function "shall fail" with error code EBADF if "The path1 or path2 argument does not specify an absolute path and the fd1 or fd2 argument, respectively, is neither AT_FDCWD nor a valid file descriptor open for reading or searching."
This does not work in Haiku hrev57823 (from 2024-07-15): it fails with error code ENOENT instead.
How to reproduce: Compile and run the attached test program.
gcc -Wall foo.c ./a.out
Expected output:
ret = -1, errno == EBADF ret = -1, errno == EBADF OK
Actual output:
ret = -1, errno == No such file or directory ret = -1, errno == No such file or directory a.out: foo.c:41:main: !fail Kill Thread
Attachments (1)
Change History (2)
by , 2 months ago
comment:1 by , 2 months ago
Blocked By: | 19048 added |
---|---|
Resolution: | → duplicate |
Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
test case foo.c