summaryrefslogtreecommitdiff
path: root/testing/slim/fix-glibc-segfault-1.3.4.patch
diff options
context:
space:
mode:
Diffstat (limited to 'testing/slim/fix-glibc-segfault-1.3.4.patch')
-rw-r--r--testing/slim/fix-glibc-segfault-1.3.4.patch13
1 files changed, 0 insertions, 13 deletions
diff --git a/testing/slim/fix-glibc-segfault-1.3.4.patch b/testing/slim/fix-glibc-segfault-1.3.4.patch
deleted file mode 100644
index b035f8a78..000000000
--- a/testing/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;