summaryrefslogtreecommitdiff
path: root/mkvlib/utils.go
diff options
context:
space:
mode:
Diffstat (limited to 'mkvlib/utils.go')
-rw-r--r--mkvlib/utils.go3
1 files changed, 0 insertions, 3 deletions
diff --git a/mkvlib/utils.go b/mkvlib/utils.go
index 4615975..802b94e 100644
--- a/mkvlib/utils.go
+++ b/mkvlib/utils.go
@@ -41,9 +41,6 @@ func findPath(path, expr string) (list []string, err error) {
}
err = queryPath(path, func(path string) bool {
if expr == "" || reg.MatchString(path) {
- if !filepath.IsAbs(path) {
- path, _ = filepath.Abs(path)
- }
list = append(list, path)
}
return true