Ying Zheng created FALCON-2073:
----------------------------------

             Summary: Handle with NULL corner case
                 Key: FALCON-2073
                 URL: https://issues.apache.org/jira/browse/FALCON-2073
             Project: Falcon
          Issue Type: Bug
            Reporter: Ying Zheng
            Assignee: Ying Zheng


Coverity scan finds quite a few places where the return value of an object 
could be NULL but Falcon tries to access its member without handling with the 
corner NULL case. For example, in OozieWorkflowEngine::updateDependents, we 
will run into an error if there is no dependency edge for the oldEntity:

{code}
        Set<Entity> affectedEntities = 
EntityGraph.get().getDependents(oldEntity);
        for (Entity affectedEntity : affectedEntities) {
                 ......
        }
{code}



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

Reply via email to