pipewire-v4l2: redirect to correct functions from fortified variants

This commit is contained in:
Barnabás Pőcze 2024-05-07 15:41:11 +02:00
parent d2ca50399a
commit 354387ca58

View file

@ -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