summaryrefslogtreecommitdiff
path: root/x11-misc/dunst-1.0.0/fix_memory_leak_2.patch
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.eu>2018-03-10 10:33:47 +0100
committerRené 'Necoro' Neumann <necoro@necoro.eu>2018-03-10 10:33:47 +0100
commitdac4e8502f57bdcecbe674bb818f078ce10aa29f (patch)
tree9b06a54961273b4b55adb743f6ffc37d3cc883f2 /x11-misc/dunst-1.0.0/fix_memory_leak_2.patch
parentb5e08be636847a00677f82841fad9f60d8c06ea3 (diff)
downloadpatches-dac4e8502f57bdcecbe674bb818f078ce10aa29f.tar.gz
patches-dac4e8502f57bdcecbe674bb818f078ce10aa29f.tar.bz2
patches-dac4e8502f57bdcecbe674bb818f078ce10aa29f.zip
[dunst] Patches already included upstream
Diffstat (limited to 'x11-misc/dunst-1.0.0/fix_memory_leak_2.patch')
-rw-r--r--x11-misc/dunst-1.0.0/fix_memory_leak_2.patch25
1 files changed, 0 insertions, 25 deletions
diff --git a/x11-misc/dunst-1.0.0/fix_memory_leak_2.patch b/x11-misc/dunst-1.0.0/fix_memory_leak_2.patch
deleted file mode 100644
index 3b7983c..0000000
--- a/x11-misc/dunst-1.0.0/fix_memory_leak_2.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-From 9e03b5258fb2e8afe95f3bf32e911dbedb63e765 Mon Sep 17 00:00:00 2001
-From: Giuliano Schneider <gs93@gmx.net>
-Date: Wed, 5 Mar 2014 13:31:01 +0100
-Subject: [PATCH] fix memory leak in string_to_argv
-
----
- utils.c | 2 ++
- 1 file changed, 2 insertions(+)
-
-diff --git a/utils.c b/utils.c
-index d0bbe75..1f0cce2 100644
---- a/utils.c
-+++ b/utils.c
-@@ -83,6 +83,8 @@ char **string_to_argv(const char *s)
- argv = realloc (argv, sizeof (char*) * (n_spaces+1));
- argv[n_spaces] = NULL;
-
-+ free(str);
-+
- return argv;
- }
-
---
-1.9.1
-