Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ccgus/fmdb.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAugust Mueller <gus@flyingmeat.com>2017-09-26 20:59:33 +0300
committerAugust Mueller <gus@flyingmeat.com>2017-09-26 20:59:33 +0300
commite384164490d4c839dc60da3ccfb00fb247618802 (patch)
treeb36ff81b12aa8f618a9d6337cd1fb37604f1843e /src
parentfcf78fe5f85b5fbfb389e716cc78538b47b38d39 (diff)
Fix for a memory leak ( via https://github.com/ccgus/fmdb/issues/615 )
Diffstat (limited to 'src')
-rw-r--r--src/fmdb/FMResultSet.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fmdb/FMResultSet.m b/src/fmdb/FMResultSet.m
index 2231e47..e18a9ee 100644
--- a/src/fmdb/FMResultSet.m
+++ b/src/fmdb/FMResultSet.m
@@ -61,7 +61,7 @@
// we don't need this anymore... (i think)
//[_parentDB setInUse:NO];
[_parentDB resultSetDidClose:self];
- _parentDB = nil;
+ [self setParentDB:nil];
}
- (int)columnCount {