Comment 4 for bug 1797546

Revision history for this message
Colin Ian King (colin-king) wrote :

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);
}