mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-12-20 09:10:03 +01: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)
|
SPA_EXPORT int __open64_2(const char *path, int oflag)
|
||||||
{
|
{
|
||||||
return open(path, oflag);
|
return open64(path, oflag);
|
||||||
}
|
}
|
||||||
#endif
|
#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)
|
SPA_EXPORT int __openat64_2(int dirfd, const char *path, int oflag)
|
||||||
{
|
{
|
||||||
return openat(dirfd, path, oflag);
|
return openat64(dirfd, path, oflag);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue