diff options
author | Michał Masłowski <mtjm@mtjm.eu> | 2012-08-21 19:35:54 +0200 |
---|---|---|
committer | Michał Masłowski <mtjm@mtjm.eu> | 2012-08-21 19:35:54 +0200 |
commit | ec26e38474b342b9dde54b39d4fd40ffc4edfa18 (patch) | |
tree | 9aec3a14ecb1782255794b70f5699fc1d3ab85d0 /extra | |
parent | 4c50cd8958fa83e4edbf7d2f9c6b475300f40538 (diff) |
Remove PKGBUILD-less directories.
Diffstat (limited to 'extra')
-rw-r--r-- | extra/libimobiledevice/HOME-segfault.patch | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/extra/libimobiledevice/HOME-segfault.patch b/extra/libimobiledevice/HOME-segfault.patch deleted file mode 100644 index e48e6cb42..000000000 --- a/extra/libimobiledevice/HOME-segfault.patch +++ /dev/null @@ -1,14 +0,0 @@ -The patch fixes segfault when both $XDG_CONFIG_HOME and $HOME are unset -Signed-off-by: Maxim Mikityanskiy <maxtram95@gmail.com> ---- src/userpref.c.orig 2012-06-04 17:04:57.387303630 +0300 -+++ src/userpref.c 2012-06-04 17:06:05.741301627 +0300 -@@ -125,6 +125,9 @@ - const char *cdir = getenv("XDG_CONFIG_HOME"); - if (!cdir) { - cdir = getenv("HOME"); -+ if (!cdir) { -+ cdir="/root"; -+ } - strcpy(__config_dir, cdir); - strcat(__config_dir, DIR_SEP_S); - strcat(__config_dir, ".config"); |