this repo has no description
1
fork

Configure Feed

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

Regression fixes in libSystem

+8 -2
-2
src/libSystem/libc/mac.c
··· 71 71 } 72 72 73 73 void libiconv_set_relocation_prefix(const char* orig, const char* curr) { 74 - // TODO: What should we do? 75 - abort(); 76 74 } 77 75 78 76 void *__darwin_mmap(void *addr, size_t length, int prot, int flags,
+8
src/libSystem/libc/namemap.cpp
··· 74 74 strcpy(symName, it->second.c_str()); 75 75 return true; 76 76 } 77 + 78 + it = g_nameMap.find(std::string("__darwin_")+symName); 79 + if (it != g_nameMap.end()) 80 + { 81 + strcpy(symName, it->second.c_str()); 82 + return true; 83 + } 84 + 77 85 return false; 78 86 } 79 87