diff options
author | baude <bbaude@redhat.com> | 2019-04-15 09:53:38 -0500 |
---|---|---|
committer | baude <bbaude@redhat.com> | 2019-04-15 12:21:51 -0500 |
commit | 6fb0a706af438778dd372d4b05b417fb30a45965 (patch) | |
tree | d1ba6e427d8524630ceb1c82eaec92c91b061e6f /cmd/podman/volume_ls.go | |
parent | 6e1dab76e2282774d384ec3bc46e314e9b030595 (diff) | |
download | podman-6fb0a706af438778dd372d4b05b417fb30a45965.tar.gz podman-6fb0a706af438778dd372d4b05b417fb30a45965.tar.bz2 podman-6fb0a706af438778dd372d4b05b417fb30a45965.zip |
Fix segfaults attribute to missing options
In cases where the remote client culls options to a command, we need to
be sure that the lookup for that flag does not result in a nil pointer.
To do so, we add a Remote attribute to the podman struct and then cli
helper funcs are now aware they are remote.
Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'cmd/podman/volume_ls.go')
-rw-r--r-- | cmd/podman/volume_ls.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/podman/volume_ls.go b/cmd/podman/volume_ls.go index 2f35462a3..b9ab89196 100644 --- a/cmd/podman/volume_ls.go +++ b/cmd/podman/volume_ls.go @@ -54,6 +54,7 @@ and the output format can be changed to JSON or a user specified Go template.` RunE: func(cmd *cobra.Command, args []string) error { volumeLsCommand.InputArgs = args volumeLsCommand.GlobalFlags = MainGlobalOpts + volumeLsCommand.Remote = remoteclient return volumeLsCmd(&volumeLsCommand) }, } |