diff options
Diffstat (limited to 'extra/slim/fix-glibc-segfault-1.3.4.patch')
-rw-r--r-- | extra/slim/fix-glibc-segfault-1.3.4.patch | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/extra/slim/fix-glibc-segfault-1.3.4.patch b/extra/slim/fix-glibc-segfault-1.3.4.patch deleted file mode 100644 index b035f8a78..000000000 --- a/extra/slim/fix-glibc-segfault-1.3.4.patch +++ /dev/null @@ -1,13 +0,0 @@ -Index: app.cpp -=================================================================== ---- app.cpp (revision 223) -+++ app.cpp (working copy) -@@ -593,7 +593,7 @@ - - n++; - -- child_env = static_cast<char**>(malloc(sizeof(char*)*n)); -+ child_env = static_cast<char**>(malloc(sizeof(char*)*(n+1))); - memcpy(child_env, old_env, sizeof(char*)*n); - child_env[n - 1] = StrConcat("XDG_SESSION_COOKIE=", ck.get_xdg_session_cookie()); - child_env[n] = NULL; |