You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hive.apache.org by "skrho (JIRA)" <ji...@apache.org> on 2014/10/27 07:47:34 UTC

[jira] [Updated] (HIVE-8458) Potential null dereference in Utilities#clearWork()

     [ https://issues.apache.org/jira/browse/HIVE-8458?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

skrho updated HIVE-8458:
------------------------
    Attachment: HIVE-8458_001.patch

I think null check logic from  && to || 

So I changed..

> Potential null dereference in Utilities#clearWork()
> ---------------------------------------------------
>
>                 Key: HIVE-8458
>                 URL: https://issues.apache.org/jira/browse/HIVE-8458
>             Project: Hive
>          Issue Type: Bug
>            Reporter: Ted Yu
>            Priority: Minor
>         Attachments: HIVE-8458_001.patch
>
>
> {code}
>     Path mapPath = getPlanPath(conf, MAP_PLAN_NAME);
>     Path reducePath = getPlanPath(conf, REDUCE_PLAN_NAME);
>     // if the plan path hasn't been initialized just return, nothing to clean.
>     if (mapPath == null && reducePath == null) {
>       return;
>     }
>     try {
>       FileSystem fs = mapPath.getFileSystem(conf);
> {code}
> If mapPath is null but reducePath is not null, getFileSystem() call would produce NPE



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