summaryrefslogtreecommitdiff
path: root/tikzit/src
diff options
context:
space:
mode:
Diffstat (limited to 'tikzit/src')
-rw-r--r--tikzit/src/common/GraphElementProperty.m3
1 files changed, 2 insertions, 1 deletions
diff --git a/tikzit/src/common/GraphElementProperty.m b/tikzit/src/common/GraphElementProperty.m
index 3cf6632..1acdc09 100644
--- a/tikzit/src/common/GraphElementProperty.m
+++ b/tikzit/src/common/GraphElementProperty.m
@@ -66,7 +66,8 @@
- (void) dealloc {
[key release];
- [value release];
+// the below line causes a exc_bad_access. Uncommenting it gains a memory leak but at least no crashing.
+// [value release];
[super dealloc];
}