mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-12 21:10:42 +00:00
When parsing /proc/self/maps, dev numbers are hex not decimal
This commit is contained in:
@@ -274,7 +274,7 @@ string GetThisLibPath()
|
||||
c++;
|
||||
|
||||
// dev
|
||||
while(isdigit(c[0]) || c[0] == ':')
|
||||
while(isalnum(c[0]) || c[0] == ':')
|
||||
c++;
|
||||
|
||||
// whitespace
|
||||
|
||||
Reference in New Issue
Block a user