From b4242367eef6f3d3c9fc0831a6695c9844ee257f Mon Sep 17 00:00:00 2001 From: Klaatu Date: Sat, 20 Dec 2014 06:59:36 +0700 Subject: games/rejoystick: Patched for init SDL. Signed-off-by: Willy Sudiarto Raharjo --- games/rejoystick/rejoystick.patch | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 games/rejoystick/rejoystick.patch (limited to 'games/rejoystick/rejoystick.patch') diff --git a/games/rejoystick/rejoystick.patch b/games/rejoystick/rejoystick.patch new file mode 100644 index 0000000000..a163936aeb --- /dev/null +++ b/games/rejoystick/rejoystick.patch @@ -0,0 +1,19 @@ +--- rejoystick-0.8.1/src/main.c.orig 2014-12-20 06:55:37.951753670 +0700 ++++ rejoystick-0.8.1/src/main.c 2014-12-20 06:56:23.666092712 +0700 +@@ -137,13 +137,9 @@ + + pthread_t sdl_thread; + +- char* home; +- char* keyfile; +- +- home = (char*)getenv("HOME"); +- keyfile = KEYFILE; +- filename = strcat(home, keyfile); +- ++ const char * home = getenv("HOME"); ++ filename = malloc(strlen(home) + strlen(KEYFILE) + 1); ++ sprintf(filename, "%s%s", home, KEYFILE); + global_argv = argv; + + -- cgit v1.2.3