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