[
https://issues.apache.org/jira/browse/FLINK-2649?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Stephan Ewen closed FLINK-2649.
-------------------------------
> Potential resource leak in JarHelper#unjar()
> --------------------------------------------
>
> Key: FLINK-2649
> URL: https://issues.apache.org/jira/browse/FLINK-2649
> Project: Flink
> Issue Type: Bug
> Reporter: Ted Yu
> Fix For: 0.10
>
>
> {code}
> dest = new BufferedOutputStream(fos, BUFFER_SIZE);
> while ((count = jis.read(data, 0, BUFFER_SIZE)) != -1) {
> dest.write(data, 0, count);
> }
> dest.flush();
> dest.close();
> {code}
> The close() of dest should be enclosed in finally block.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)