video_thread_wrapper.c - use PATH_MAX sizes for chars

This commit is contained in:
twinaphex 2014-10-01 16:25:14 +02:00
parent 9393cc5ca5
commit 9fc34b6d2d

View File

@ -134,7 +134,7 @@ typedef struct thread_video
struct
{
char msg[1024];
char msg[PATH_MAX];
struct font_params params;
} osd_message;
@ -152,7 +152,7 @@ typedef struct thread_video
unsigned pitch;
bool updated;
bool within_thread;
char msg[1024];
char msg[PATH_MAX];
} frame;
video_driver_t video_thread;