this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

More LLDB improvements

+4 -1
+3
src/DebugSymbols/DebugSymbols.c
··· 19 19 CFRelease(dsymPath); 20 20 return url; 21 21 } 22 + 23 + fprintf(stderr, "Didn't find debug symbols at %s based on UUID\n",CFStringGetCStringPtr(dsymPath, kCFStringEncodingUTF8)); 22 24 CFRelease(dsymPath); 23 25 } 24 26 ··· 36 38 CFRelease(dsymPath); 37 39 return url; 38 40 } 41 + fprintf(stderr, "Debug symbols not found at %s\n", CFStringGetCStringPtr(exec_path, kCFStringEncodingUTF8)); 39 42 40 43 CFRelease(dsymPath); 41 44 }
+1 -1
src/kernel/emulation/linux/misc/proc_info.c
··· 339 339 // This call returns true if we see the start of another mapping. 340 340 if (parse_smaps_firstline(line, &my_rpi.prp_prinfo, &my_rpi.prp_vip)) 341 341 { 342 - if (my_rpi.prp_prinfo.pri_address + my_rpi.prp_prinfo.pri_size >= arg) 342 + if (arg >= my_rpi.prp_prinfo.pri_address && arg < (my_rpi.prp_prinfo.pri_address + my_rpi.prp_prinfo.pri_size)) 343 343 { 344 344 foundRegion = true; 345 345 }