From be88e14c91997e5ba05226b025fd5ac5fc8a301c Mon Sep 17 00:00:00 2001 From: Ted Mielczarek Date: Thu, 7 May 2015 07:11:27 -0400 Subject: [PATCH] bug 1076848 - fix source server indexing for headers from dist/include. r=dmajor --HG-- extra : rebase_source : c98ea332576f244ee29326c44eee3201e99f08ed --- toolkit/crashreporter/tools/symbolstore.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/toolkit/crashreporter/tools/symbolstore.py b/toolkit/crashreporter/tools/symbolstore.py index a8d9b6986c99..30d3fe144f78 100755 --- a/toolkit/crashreporter/tools/symbolstore.py +++ b/toolkit/crashreporter/tools/symbolstore.py @@ -638,9 +638,10 @@ class Dumper: # FILE index filename (x, index, filename) = line.rstrip().split(None, 2) filename = os.path.normpath(self.FixFilenameCase(filename)) + # We want original file paths for the source server. + sourcepath = filename if filename in self.file_mapping: filename = self.file_mapping[filename] - sourcepath = filename if self.vcsinfo: (filename, rootname) = GetVCSFilename(filename, self.srcdirs) # sets vcs_root in case the loop through files were to end on an empty rootname