In JavaScriptCore/wtf/FastMalloc.cpp:696 The list should be checked for NULL. Eg. static inline void *SLL_Pop(void **list) { if (!list || !(*list)) return NULL; void *result = *list; *list = SLL_Next(*list); return result; } Greets, Luka