You are viewing a plain text version of this content. The canonical link for it is here.
Posted to reviews@spark.apache.org by srowen <gi...@git.apache.org> on 2014/09/16 15:01:10 UTC

[GitHub] spark pull request: [SPARK-3546] InputStream of ManagedBuffer is n...

Github user srowen commented on a diff in the pull request:

    https://github.com/apache/spark/pull/2408#discussion_r17598920
  
    --- Diff: core/src/main/scala/org/apache/spark/network/ManagedBuffer.scala ---
    @@ -66,8 +67,13 @@ final class FileSegmentManagedBuffer(val file: File, val offset: Long, val lengt
       override def size: Long = length
     
       override def nioByteBuffer(): ByteBuffer = {
    -    val channel = new RandomAccessFile(file, "r").getChannel
    -    channel.map(MapMode.READ_ONLY, offset, length)
    +    var channel: FileChannel = null
    +    try {
    +      channel = new RandomAccessFile(file, "r").getChannel
    +      channel.map(MapMode.READ_ONLY, offset, length)
    +    } finally {
    +      channel.close()
    --- End diff --
    
    This would throw an NPE if an error occurred in `new RandomAccessFile` or `getChannel`. I suppose you move `new RandomAccessFile(file, "r").getChannel` before the `try` block. Before that method returns, there is no `FileChannel` that successfully opened and therefore needs closing.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org