this repo has no description
1
fork

Configure Feed

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

libmach-o: Skip over unsupported re-exports

+9
+9
src/libmach-o/MachOImpl.cpp
··· 226 226 { 227 227 const uint8_t* expected_term_end = p + term_size; 228 228 Export* exp = new Export; 229 + 229 230 exp->name = *name_buf; 230 231 exp->flag = uleb128(p); 232 + 233 + // TODO: flag == 8 (EXPORT_SYMBOL_FLAGS_REEXPORT) 234 + if (exp->flag & 8) 235 + { 236 + LOG << "FIXME: reexports not currently handled\n"; 237 + return; 238 + } 239 + 231 240 exp->addr = uleb128(p); 232 241 LOG << "export: " << name_buf << " flags=" << std::hex << exp->flag << std::dec << " addr=" << (void*)exp->addr << std::endl; 233 242