Skip to content

Commit

Permalink
Fixed search of cdb.exe.
Browse files Browse the repository at this point in the history
It was being searched for under the name 'cdb'. Fixing this gets
symbolized stack traces working again on Windows.

BUG=399431

Review URL: https://codereview.chromium.org/436723002

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@287047 0039d316-1c4b-4281-b951-d872f2087c98
  • Loading branch information
kbr@chromium.org committed Aug 1, 2014
1 parent 7476dcc commit d9d01ea
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ def _GetCdbPath(self):
'x64'),
)
for possible_path in possible_paths:
app_path = os.path.join(possible_path, 'cdb')
app_path = os.path.join(possible_path, 'cdb.exe')
app_path = path.FindInstalledWindowsApplication(app_path)
if app_path:
return app_path
Expand Down

0 comments on commit d9d01ea

Please sign in to comment.