Reproducer:
#include <sys/ioctl.h> #include <sys/types.h> #include <sys/stat.h> #include <fcntl.h>
main() { int ptnum, fd;
fd = open("/dev/dri/card0", O_RDWR); (void)ioctl(fd, TIOCGPTN, &ptnum); }
Reproducer:
#include <sys/ioctl.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
main()
{
int ptnum, fd;
fd = open("/ dev/dri/ card0", O_RDWR);
(void)ioctl(fd, TIOCGPTN, &ptnum);
}