summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorLars Gustäbel <lars@gustaebel.de>2012-04-24 19:09:17 (GMT)
committerLars Gustäbel <lars@gustaebel.de>2012-04-24 19:09:17 (GMT)
commit9f478c021dc499b0d23ee418c0dcc6b5076524aa (patch)
tree3ebaca4c7471baecc8eff3eb70b163da49fa9bbe /Lib
parent1d642d2af1809cd3a37a22488755f337fb1a867a (diff)
parent1ef9eda7bcddc494a250a6fb262c0dd3327dc443 (diff)
downloadcpython-9f478c021dc499b0d23ee418c0dcc6b5076524aa.zip
cpython-9f478c021dc499b0d23ee418c0dcc6b5076524aa.tar.gz
cpython-9f478c021dc499b0d23ee418c0dcc6b5076524aa.tar.bz2
Merge with 3.2: Issue #14160: TarFile.extractfile() failed to resolve symbolic
links when the links were not located in an archive subdirectory.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/tarfile.py2
-rw-r--r--Lib/test/test_tarfile.py3
-rw-r--r--Lib/test/testtar.tarbin427008 -> 435200 bytes
3 files changed, 4 insertions, 1 deletions
diff --git a/Lib/tarfile.py b/Lib/tarfile.py
index e3380a2..efb2773 100644
--- a/Lib/tarfile.py
+++ b/Lib/tarfile.py
@@ -2481,7 +2481,7 @@ class TarFile(object):
"""
if tarinfo.issym():
# Always search the entire archive.
- linkname = os.path.dirname(tarinfo.name) + "/" + tarinfo.linkname
+ linkname = "/".join(filter(None, (os.path.dirname(tarinfo.name), tarinfo.linkname)))
limit = None
else:
# Search the archive before the link, because a hard link is
diff --git a/Lib/test/test_tarfile.py b/Lib/test/test_tarfile.py
index ce543df..4967ad0 100644
--- a/Lib/test/test_tarfile.py
+++ b/Lib/test/test_tarfile.py
@@ -171,6 +171,9 @@ class UstarReadTest(ReadTest):
def test_fileobj_symlink2(self):
self._test_fileobj_link("./ustar/linktest2/symtype", "ustar/linktest1/regtype")
+ def test_issue14160(self):
+ self._test_fileobj_link("symtype2", "ustar/regtype")
+
class CommonReadTest(ReadTest):
diff --git a/Lib/test/testtar.tar b/Lib/test/testtar.tar
index b932104..bb93453 100644
--- a/Lib/test/testtar.tar
+++ b/Lib/test/testtar.tar
Binary files differ