Browse Source

Update lilvmm fix-leaks patch

tags/1.9.4
falkTX 11 years ago
parent
commit
d4ae33c340
2 changed files with 1 additions and 11 deletions
  1. +0
    -11
      source/libs/lilv/custom-patches/lilvmm_fix-leaks.patch
  2. +1
    -0
      source/libs/lilv/lilv-0.16.0/lilv/lilvmm.hpp

+ 0
- 11
source/libs/lilv/custom-patches/lilvmm_fix-leaks.patch View File

@@ -1,11 +0,0 @@
diff -U 3 -H -b -B -d -r -N -- lilv-0.14.4.old/lilv/lilvmm.hpp lilv-0.14.4/lilv/lilvmm.hpp
--- lilv-0.14.4.old/lilv/lilvmm.hpp 2012-09-13 12:47:55.000000000 +0100
+++ lilv-0.14.4/lilv/lilvmm.hpp 2012-09-13 12:48:10.950555311 +0100
@@ -60,6 +60,7 @@
#endif
struct Node {
+ inline Node(LilvNode* node) : me(node) {}
inline Node(const LilvNode* node) : me(lilv_node_duplicate(node)) {}
inline Node(const Node& copy) : me(lilv_node_duplicate(copy.me)) {}

+ 1
- 0
source/libs/lilv/lilv-0.16.0/lilv/lilvmm.hpp View File

@@ -60,6 +60,7 @@ uri_to_path(const char* uri) {
#endif

struct Node {
inline Node(LilvNode* node) : me(node) {}
inline Node(const LilvNode* node) : me(lilv_node_duplicate(node)) {}
inline Node(const Node& copy) : me(lilv_node_duplicate(copy.me)) {}



Loading…
Cancel
Save