Skip to content

Commit

Permalink
Fix rank order violation at loglevel 5: xref #1649
Browse files Browse the repository at this point in the history
  • Loading branch information
derekbruening committed Dec 15, 2022
1 parent 9ac3485 commit 97bc4dd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/vmareas.c
Original file line number Diff line number Diff line change
Expand Up @@ -751,8 +751,8 @@ print_vm_area(vm_area_vector_t *v, vm_area_t *area, file_t outf, const char *pre
/* avoid rank order violation */
IF_NO_MEMQUERY(v == all_memory_areas ? NULL :)
/* i#1649: avoid rank order for dynamo_areas and for other vectors. */
((v == dynamo_areas || v == fcache_unit_areas ||
v == loaded_module_areas IF_LINUX(|| v == d_r_rseq_areas))
((v == dynamo_areas || v == fcache_unit_areas || v == loaded_module_areas ||
v == modlist_areas IF_LINUX(|| v == d_r_rseq_areas))
? NULL
: get_module_base(area->start));
if (modbase != NULL &&
Expand Down

0 comments on commit 97bc4dd

Please sign in to comment.