aboutsummaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authorGabriele Svelto <gsvelto@mozilla.com>2018-08-14 15:40:57 +0200
committerTed Mielczarek <ted.mielczarek@gmail.com>2018-08-14 14:12:51 +0000
commit658a77e532ede5582eaf72d1d94ae988d49910b5 (patch)
tree29787c634246e014b5e83f34f1ef4eca680f5569 /src/common
parentAdd support for parsing the DW_AT_ranges attributes (diff)
downloadbreakpad-658a77e532ede5582eaf72d1d94ae988d49910b5.tar.xz
Fixed a typo introduced in revision 16e08520e6027df4bf1934abbfd5e1a088ffb69c
BUG=769 Change-Id: I1e118fe31b4a4031275b8b49c4c1eb98745ce21a Reviewed-on: https://chromium-review.googlesource.com/1174571 Reviewed-by: Ted Mielczarek <ted.mielczarek@gmail.com>
Diffstat (limited to 'src/common')
-rw-r--r--src/common/dwarf/functioninfo.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/dwarf/functioninfo.cc b/src/common/dwarf/functioninfo.cc
index a0def62e..ee198fc5 100644
--- a/src/common/dwarf/functioninfo.cc
+++ b/src/common/dwarf/functioninfo.cc
@@ -185,7 +185,7 @@ void CUFunctionInfoHandler::ProcessAttributeUnsigned(uint64 offset,
current_function_info_->file = files_->at(data).name;
break;
case DW_AT_ranges:
- current_function_info->ranges = data;
+ current_function_info_->ranges = data;
break;
default:
break;