Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2771)

Unified Diff: build/get_syzygy_binaries.py

Issue 1231863014: Don't launch sub-process through shell. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/get_syzygy_binaries.py
diff --git a/build/get_syzygy_binaries.py b/build/get_syzygy_binaries.py
index 2a6469ffaa6de0f3184085d54c2c6626d246c153..1cab3fcf48dfd21f8c54e6492101f9d5df2e6300 100755
--- a/build/get_syzygy_binaries.py
+++ b/build/get_syzygy_binaries.py
@@ -256,7 +256,7 @@ def _GsUtil(*cmd):
timeout = 4 # Seconds.
while True:
_LOGGER.debug('Running %s', cmd)
- prog = subprocess.Popen(cmd, shell=True)
+ prog = subprocess.Popen(cmd, shell=False)
prog.communicate()
# Stop retrying on success.
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698