Skip to content

Commit

Permalink
nacl: Fixed unnecessary large input text array.
Browse files Browse the repository at this point in the history
  • Loading branch information
philippwiesemann committed Jun 16, 2017
1 parent 9085c7b commit a4db3db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/video/nacl/SDL_naclevents.c
Expand Up @@ -329,7 +329,7 @@ void NACL_PumpEvents(_THIS) {
struct PP_Point location;
struct PP_Var var;
const char *str;
char text[64];
char text[SDL_TEXTINPUTEVENT_TEXT_SIZE];
Uint32 str_len;
SDL_VideoData *driverdata = (SDL_VideoData *) _this->driverdata;
SDL_Mouse *mouse = SDL_GetMouse();
Expand Down

0 comments on commit a4db3db

Please sign in to comment.