diff options
author | William Pitcock <nenolod@dereferenced.org> | 2017-10-19 22:18:53 +0000 |
---|---|---|
committer | William Pitcock <nenolod@dereferenced.org> | 2017-10-19 22:20:02 +0000 |
commit | 55c392b0f8dbb2b9639d975bdf2121f863785980 (patch) | |
tree | ed25c491fae597cecf1a16b87c9dda4deb873aa0 /main/musl/0042-fix-glob-failure-to-match-plain-to-root-directory.patch | |
parent | 334dd84114a19a8e3025abcc6fc9afb7cb255f3f (diff) | |
download | aports-55c392b0f8dbb2b9639d975bdf2121f863785980.tar.bz2 aports-55c392b0f8dbb2b9639d975bdf2121f863785980.tar.xz |
main/musl: upgrade to 1.1.17
Diffstat (limited to 'main/musl/0042-fix-glob-failure-to-match-plain-to-root-directory.patch')
-rw-r--r-- | main/musl/0042-fix-glob-failure-to-match-plain-to-root-directory.patch | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/main/musl/0042-fix-glob-failure-to-match-plain-to-root-directory.patch b/main/musl/0042-fix-glob-failure-to-match-plain-to-root-directory.patch deleted file mode 100644 index cc9166248e..0000000000 --- a/main/musl/0042-fix-glob-failure-to-match-plain-to-root-directory.patch +++ /dev/null @@ -1,30 +0,0 @@ -From 84eff797e3e38210cc311b000b1586b948b4fc35 Mon Sep 17 00:00:00 2001 -From: Rich Felker <dalias@aerifal.cx> -Date: Thu, 8 Jun 2017 19:50:23 -0400 -Subject: [PATCH] fix glob failure to match plain "/" to root directory - -the check to prevent matching empty string wrongly blocked matching -of "/" due to checking emptiness after stripping leading slashes -rather than checking the full original argument string. - -simplified from patch by Julien Ramseier. ---- - src/regex/glob.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/regex/glob.c b/src/regex/glob.c -index 5b6ff124..2d4d562e 100644 ---- a/src/regex/glob.c -+++ b/src/regex/glob.c -@@ -179,7 +179,7 @@ int glob(const char *restrict pat, int flags, int (*errfunc)(const char *path, i - - if (strnlen(p, PATH_MAX+1) > PATH_MAX) return GLOB_NOSPACE; - -- if (*p) error = match_in_dir(d, p, flags, errfunc, &tail); -+ if (*pat) error = match_in_dir(d, p, flags, errfunc, &tail); - if (error == GLOB_NOSPACE) { - freelist(&head); - return error; --- -2.13.0 - |