Loading toolkit/crashreporter/tools/symbolstore.py +2 −1 Original line number Diff line number Diff line Loading @@ -618,7 +618,8 @@ class Dumper: try: cmd = [self.dump_syms] + arch.split() + [file] self.output_pid(sys.stderr, ' '.join(cmd)) proc = subprocess.Popen(cmd, stdout=subprocess.PIPE) proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=open(os.devnull, 'wb')) module_line = proc.stdout.next() if module_line.startswith("MODULE"): # MODULE os cpu guid debug_file Loading Loading
toolkit/crashreporter/tools/symbolstore.py +2 −1 Original line number Diff line number Diff line Loading @@ -618,7 +618,8 @@ class Dumper: try: cmd = [self.dump_syms] + arch.split() + [file] self.output_pid(sys.stderr, ' '.join(cmd)) proc = subprocess.Popen(cmd, stdout=subprocess.PIPE) proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=open(os.devnull, 'wb')) module_line = proc.stdout.next() if module_line.startswith("MODULE"): # MODULE os cpu guid debug_file Loading