You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hive.apache.org by "SUYEON LEE (JIRA)" <ji...@apache.org> on 2014/09/23 04:04:33 UTC

[jira] [Updated] (HIVE-7672) Potential resource leak in EximUtil#createExportDump()

     [ https://issues.apache.org/jira/browse/HIVE-7672?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

SUYEON LEE updated HIVE-7672:
-----------------------------
    Attachment:     (was: HIVE-7672.patch)

> Potential resource leak in EximUtil#createExportDump()
> ------------------------------------------------------
>
>                 Key: HIVE-7672
>                 URL: https://issues.apache.org/jira/browse/HIVE-7672
>             Project: Hive
>          Issue Type: Bug
>            Reporter: Ted Yu
>            Assignee: SUYEON LEE
>            Priority: Minor
>         Attachments: HIVE-7672.patch
>
>
> Here is related code:
> {code}
>       OutputStream out = fs.create(metadataPath);
>       out.write(jsonContainer.toString().getBytes("UTF-8"));
>       out.close();
> {code}
> If out.write() throws exception, out would be left unclosed.
> out.close() should be enclosed in finally block.



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