diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-02-03 12:07:40 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-03 12:07:40 -0500 |
commit | be568738b1d8268c7c799241ef2c73682aeff934 (patch) | |
tree | 81122f1298d5417cc3787535431bf4616fcaf0ef /vendor/github.com | |
parent | 4945abb7d10a0a22925b365e58f3f6793cb22ae1 (diff) | |
parent | 9dc795191537149503822acc3171f735a53192f4 (diff) | |
download | podman-be568738b1d8268c7c799241ef2c73682aeff934.tar.gz podman-be568738b1d8268c7c799241ef2c73682aeff934.tar.bz2 podman-be568738b1d8268c7c799241ef2c73682aeff934.zip |
Merge pull request #9215 from containers/dependabot/go_modules/github.com/containernetworking/cni-0.8.1
Bump github.com/containernetworking/cni from 0.8.0 to 0.8.1
Diffstat (limited to 'vendor/github.com')
-rw-r--r-- | vendor/github.com/containernetworking/cni/pkg/invoke/find.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/vendor/github.com/containernetworking/cni/pkg/invoke/find.go b/vendor/github.com/containernetworking/cni/pkg/invoke/find.go index e815404c8..e62029eb7 100644 --- a/vendor/github.com/containernetworking/cni/pkg/invoke/find.go +++ b/vendor/github.com/containernetworking/cni/pkg/invoke/find.go @@ -18,6 +18,7 @@ import ( "fmt" "os" "path/filepath" + "strings" ) // FindInPath returns the full path of the plugin by searching in the provided path @@ -26,6 +27,10 @@ func FindInPath(plugin string, paths []string) (string, error) { return "", fmt.Errorf("no plugin name provided") } + if strings.ContainsRune(plugin, os.PathSeparator) { + return "", fmt.Errorf("invalid plugin name: %s", plugin) + } + if len(paths) == 0 { return "", fmt.Errorf("no paths provided") } |