You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Benjamin Bentmann (JIRA)" <ji...@apache.org> on 2008/07/26 15:43:31 UTC

[jira] Updated: (EXEC-31) Fix handling of empty environment for forked process

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

Benjamin Bentmann updated EXEC-31:
----------------------------------

    Attachment: EXEC-31.patch

> Fix handling of empty environment for forked process
> ----------------------------------------------------
>
>                 Key: EXEC-31
>                 URL: https://issues.apache.org/jira/browse/EXEC-31
>             Project: Commons Exec
>          Issue Type: Bug
>    Affects Versions: 1.0
>            Reporter: Benjamin Bentmann
>            Priority: Minor
>         Attachments: EXEC-31.patch
>
>
> The current implementation of {{EnvironmentUtil.toStrings()}} will turn an empty map into a null array. The {{CommandLauncher}} implementations will then pass this array to {{Runtime.exec()}}. However, passing in {{null}} for the env argument means to inherit the enviroment, this is not the same as using an empty environment as specified by the caller. In other words, the semantics of a null map and an empty map clash which I believe shouldn't.
> I suggest to have {{EnviromentUtils.toStrings()}}
> - output an emtpy array upon input of an empty map
> - output {{null}} upon input of {{null}} (primarily to ease usage, e.g. in the {{CommandLauncher}}'s)

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.