summaryrefslogtreecommitdiffstats
path: root/libraries/libxdg-basedir/alloc_buffer.patch
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/libxdg-basedir/alloc_buffer.patch')
-rw-r--r--libraries/libxdg-basedir/alloc_buffer.patch13
1 files changed, 0 insertions, 13 deletions
diff --git a/libraries/libxdg-basedir/alloc_buffer.patch b/libraries/libxdg-basedir/alloc_buffer.patch
deleted file mode 100644
index 4726e58dbf..0000000000
--- a/libraries/libxdg-basedir/alloc_buffer.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-Index: libxdg-basedir-1.2.0/src/basedir.c
-===================================================================
---- libxdg-basedir-1.2.0.orig/src/basedir.c 2014-02-11 19:56:41.702376488 +0100
-+++ libxdg-basedir-1.2.0/src/basedir.c 2014-02-11 19:56:41.698376482 +0100
-@@ -574,7 +574,7 @@
- unsigned int homelen;
- if (!(home = xdgGetEnv("HOME")))
- return NULL;
-- if (!(relhome = (char*)malloc((homelen = strlen(home))+fallbacklength))) return NULL;
-+ if (!(relhome = (char*)malloc((homelen = strlen(home))+fallbacklength+1))) return NULL;
- memcpy(relhome, home, homelen);
- memcpy(relhome+homelen, relativefallback, fallbacklength+1);
- }