simon
main
@ -30,7 +30,7 @@ TreeNode *addToTree(TreeNode *root, const void *data, size_t dataSize, CompareFc
{
return NULL;
}
insertedNode->data = memcpy(insertedNode->data, data, dataSize);
memcpy(insertedNode->data, data, dataSize);
// reset isDuplicate if it exists
if (isDuplicate)
The note is not visible to the blocked user.