Files
podman/vendor/github.com/cyphar/filepath-securejoin/gocompat_errors_go120.go
David Shea 62cf7b5032 Update filepath-securejoin
Use a fork of v0.4.1 in order to add support for go 1.17.

Signed-off-by: David Shea <dshea@redhat.com>
2025-09-17 08:40:41 -04:00

19 lines
530 B
Go

//go:build linux && go1.20
// Copyright (C) 2024 SUSE LLC. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package securejoin
import (
"fmt"
)
// wrapBaseError is a helper that is equivalent to fmt.Errorf("%w: %w"), except
// that on pre-1.20 Go versions only errors.Is() works properly (errors.Unwrap)
// is only guaranteed to give you baseErr.
func wrapBaseError(baseErr, extraErr error) error {
return fmt.Errorf("%w: %w", extraErr, baseErr)
}