summaryrefslogtreecommitdiff
path: root/lib/igt_debugfs.c
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2017-09-02 21:38:51 -0700
committerDaniel Vetter <daniel.vetter@ffwll.ch>2017-09-05 13:44:21 +0200
commit7f92d00164330af5816e96ad964daf718d8d78c4 (patch)
tree58ae20622676b188c291cae28b838a185dce3b52 /lib/igt_debugfs.c
parent925900e66156e943f2418b1c7702bd16d41e348b (diff)
Use PATH_MAX to fix some sprintf-into-short-buffers warnings.
Signed-off-by: Eric Anholt <eric@anholt.net> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Diffstat (limited to 'lib/igt_debugfs.c')
-rw-r--r--lib/igt_debugfs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/igt_debugfs.c b/lib/igt_debugfs.c
index 090b56e0..63183e57 100644
--- a/lib/igt_debugfs.c
+++ b/lib/igt_debugfs.c
@@ -491,7 +491,7 @@ static void igt_pipe_crc_reset(int drm_fd)
}
while ((dirent = readdir(dir))) {
- char buf[128];
+ char buf[PATH_MAX];
if (strcmp(dirent->d_name, "crtc-") != 0)
continue;
@@ -525,7 +525,7 @@ static void igt_pipe_crc_reset(int drm_fd)
static void pipe_crc_exit_handler(int sig)
{
struct dirent *dirent;
- char buf[128];
+ char buf[PATH_MAX];
DIR *dir;
int fd;