Skip to content

Commit

Permalink
Fixes a memory leak while running the TCK. The connection reference w…
Browse files Browse the repository at this point in the history
…as not getting cleared if the connection was closed.

git-svn-id: https://olap4j.svn.sourceforge.net/svnroot/olap4j/trunk@531 c6a108a4-781c-0410-a6c6-c2d559e19af0
  • Loading branch information
lucboudreau committed Apr 25, 2012
1 parent 7771362 commit 1152987
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion testsrc/org/olap4j/ConnectionTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ protected void tearDown() throws Exception {
&& !connection.isClosed())
{
connection.close();
connection = null;
}
connection = null;
testContext = null;
tester = null;
}
Expand Down

0 comments on commit 1152987

Please sign in to comment.