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
_______________________________________________
webkit-dev mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev

