This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-vfs.git
The following commit(s) were added to refs/heads/master by this push: new bcd2c0f Fix NPE when closing a stream from a different thread #167. bcd2c0f is described below commit bcd2c0f628e8dbf713f9ddd5429ccf6d8d890347 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Mon Mar 15 08:53:43 2021 -0400 Fix NPE when closing a stream from a different thread #167. See also #166. --- src/changes/changes.xml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/changes/changes.xml b/src/changes/changes.xml index e30cbec..23a87a2 100644 --- a/src/changes/changes.xml +++ b/src/changes/changes.xml @@ -53,6 +53,9 @@ The <action> type attribute can be add,update,fix,remove. <action type="fix" dev="ggregory" due-to="Boris Petrov"> Fix closing the files cache after warning that not all components have been closed; #165. </action> + <action type="fix" dev="ggregory" due-to="Boris Petrov, Gary Gregory, Max Kellermann"> + Fix NPE when closing a stream from a different thread #167. See also #166. + </action> <!-- UPDATES --> <action type="update" dev="ggregory" due-to="Arturo Bernal"> Replace construction of FileInputStream and FileOutputStream objects with Files NIO APIs. #164.