depot/third_party/nixpkgs/pkgs/development/python-modules/suds/suds-0.4-CVE-2013-2217.patch
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

19 lines
569 B
Diff

--- suds.orig/suds/cache.py 2013-06-29 16:26:16.930326017 +0200
+++ suds.orig/suds/cache.py 2013-06-29 16:02:15.000000000 +0200
@@ -19,6 +19,7 @@
"""
import os
+import tempfile
import suds
from tempfile import gettempdir as tmp
from suds.transport import *
@@ -138,7 +139,7 @@
@type duration: {unit:value}
"""
if location is None:
- location = os.path.join(tmp(), 'suds')
+ location = tempfile.mkdtemp()
self.location = location
self.duration = (None, 0)
self.setduration(**duration)