mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-29 05:40:27 -04:00
pipewire-v4l2: redirect to correct functions from fortified variants
This commit is contained in:
parent
d2ca50399a
commit
354387ca58
1 changed files with 2 additions and 2 deletions
|
|
@ -58,7 +58,7 @@ SPA_EXPORT int open64(const char *path, int oflag, ...)
|
|||
|
||||
SPA_EXPORT int __open64_2(const char *path, int oflag)
|
||||
{
|
||||
return open(path, oflag);
|
||||
return open64(path, oflag);
|
||||
}
|
||||
#endif
|
||||
|
||||
|
|
@ -88,7 +88,7 @@ SPA_EXPORT int openat64(int dirfd, const char *path, int oflag, ...)
|
|||
|
||||
SPA_EXPORT int __openat64_2(int dirfd, const char *path, int oflag)
|
||||
{
|
||||
return openat(dirfd, path, oflag);
|
||||
return openat64(dirfd, path, oflag);
|
||||
}
|
||||
#endif
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue