Ted Yu created HDFS-7567:
----------------------------

             Summary: Potential null dereference in 
FSEditLogLoader#applyEditLogOp()
                 Key: HDFS-7567
                 URL: https://issues.apache.org/jira/browse/HDFS-7567
             Project: Hadoop HDFS
          Issue Type: Bug
            Reporter: Ted Yu
            Priority: Minor


{code}
      INodeFile oldFile = INodeFile.valueOf(iip.getLastINode(), path, true);
      if (oldFile != null && addCloseOp.overwrite) {
...
      INodeFile newFile = oldFile;
...
      // Update the salient file attributes.
      newFile.setAccessTime(addCloseOp.atime, Snapshot.CURRENT_STATE_ID);
      newFile.setModificationTime(addCloseOp.mtime, Snapshot.CURRENT_STATE_ID);
{code}
The last two lines are not protected by null check.



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

Reply via email to