sna: Increase the size of the path name buffer a bit
../src/intel_device.c: In function ‘__intel_open_device__pci.isra.6’: ../src/intel_device.c:321:25: warning: ‘%s’ directive writing up to 255 bytes into a region of size 247 [-Wformat-overflow=] sprintf(path + base, "%s", de->d_name); Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
This commit is contained in:
parent
24a06fef71
commit
17ecd906f3
|
|
@ -301,9 +301,9 @@ static int open_cloexec(const char *path)
|
|||
#ifdef __linux__
|
||||
static int __intel_open_device__major_minor(int _major, int _minor)
|
||||
{
|
||||
char path[256];
|
||||
DIR *dir;
|
||||
struct dirent *de;
|
||||
char path[9+sizeof(de->d_name)];
|
||||
int base, fd = -1;
|
||||
|
||||
base = sprintf(path, "/dev/dri/");
|
||||
|
|
|
|||
Loading…
Reference in New Issue