Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
B
bcc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
bcc
Commits
b2a64a7b
Commit
b2a64a7b
authored
Mar 30, 2016
by
Vicent Marti
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ld.lua: fix parsing of base16 addresses
parent
b495d2c3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
0 deletions
+2
-0
src/lua/bcc/ld.lua
src/lua/bcc/ld.lua
+2
-0
No files found.
src/lua/bcc/ld.lua
View file @
b2a64a7b
...
...
@@ -60,6 +60,7 @@ local function _find_load_address(path)
path
)
if
addr
then
addr
=
tonumber
(
addr
,
16
)
_find_load_address_cache
[
path
]
=
addr
end
...
...
@@ -84,6 +85,7 @@ local function _find_symbol(path, sym)
path
,
sym
)
if
addr
then
addr
=
tonumber
(
addr
,
16
)
symbols
[
sym
]
=
addr
end
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment