You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@knox.apache.org by "Larry McCay (JIRA)" <ji...@apache.org> on 2016/09/01 15:20:21 UTC

[jira] [Created] (KNOX-748) Fix Resource Leak in X509CertificateUtil.writeCertificateToJKS

Larry McCay created KNOX-748:
--------------------------------

             Summary: Fix Resource Leak in X509CertificateUtil.writeCertificateToJKS
                 Key: KNOX-748
                 URL: https://issues.apache.org/jira/browse/KNOX-748
             Project: Apache Knox
          Issue Type: Bug
          Components: Server
            Reporter: Larry McCay
             Fix For: 0.10.0


New defect(s) Reported-by: Coverity Scan
Showing 1 of 1 defect(s)


** CID 1361992:  Exceptional resource leaks  (RESOURCE_LEAK)
/gateway-spi/src/main/java/org/apache/hadoop/gateway/services/security/impl/X509CertificateUtil.java: 299 in org.apache.hadoop.gateway.services.security.impl.X509CertificateUtil.writeCertificateToJKS(java.security.cert.Certificate, java.io.File)()


________________________________________________________________________________________________________
*** CID 1361992:  Exceptional resource leaks  (RESOURCE_LEAK)
/gateway-spi/src/main/java/org/apache/hadoop/gateway/services/security/impl/X509CertificateUtil.java: 299 in org.apache.hadoop.gateway.services.security.impl.X509CertificateUtil.writeCertificateToJKS(java.security.cert.Certificate, java.io.File)()
293     
294         char[] password = "changeme".toCharArray();
295         ks.load(null, password);
296         ks.setCertificateEntry("gateway-identity", cert);
297     
298         FileOutputStream fos = new FileOutputStream(file);
   CID 1361992:  Exceptional resource leaks  (RESOURCE_LEAK)
   Variable "fos" going out of scope leaks the resource it refers to.
299         ks.store(fos, password);
300         fos.close();
301       }



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)