Skip to content

Commit

Permalink
Merge pull request google#101 from yasushi-saito/master
Browse files Browse the repository at this point in the history
Allow permission line in /proc/self/map to be "rwx", not just "r-x".
  • Loading branch information
ukai committed Apr 15, 2016
2 parents 053c923 + efa6ecc commit 6cc9d87
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/symbolize.cc
Original file line number Diff line number Diff line change
Expand Up @@ -569,8 +569,8 @@ OpenObjectFileContainingPcAndGetStartAddress(uint64_t pc,
return -1; // Malformed line.
}

// Check flags. We are only interested in "r-x" maps.
if (memcmp(flags_start, "r-x", 3) != 0) { // Not a "r-x" map.
// Check flags. We are only interested in "r*x" maps.
if (flags_start[0] != 'r' || flags_start[2] != 'x') {
continue; // We skip this map.
}
++cursor; // Skip ' '.
Expand Down

0 comments on commit 6cc9d87

Please sign in to comment.