SOLR-6801 NPE on core reload

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1652431 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Noble Paul 2015-01-16 15:18:05 +00:00
parent 9483635648
commit 255961719f
1 changed files with 1 additions and 1 deletions

View File

@ -494,7 +494,7 @@ public final class RequestHandlers {
public void close() throws Exception {
super.close();
if (_closed) return;
classLoader.releaseJar();
if(classLoader != null) classLoader.releaseJar();
_closed = true;
}
}