this repo has no description
1
fork

Configure Feed

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

while -> for loop in dyld_stub_binder()

+1 -4
+1 -4
src/dyld/MachOLoader.cpp
··· 676 676 } 677 677 678 678 std::vector<MachO::Bind*> toBind; // will hold only the single item we need to bind 679 - std::list<MachO::Bind>::iterator it; 680 679 681 680 (*imageMap)->mutex_lazy_binds.lock(); 682 - it = (*imageMap)->lazy_binds.begin(); 683 681 684 - while (it != (*imageMap)->lazy_binds.end()) 682 + for (auto it = (*imageMap)->lazy_binds.begin(); it != (*imageMap)->lazy_binds.end(); it++) 685 683 { 686 684 if (it->offset == lazyOffset) 687 685 { 688 686 toBind.push_back(&*it); 689 687 break; 690 688 } 691 - it++; 692 689 } 693 690 694 691 if (toBind.empty())