One more thing :) Out of curiosity, I changed the code as specified in that bugzilla from:
strncpy((char *)s_kt->name.key, trash.str, i); To node = &s_kt->name; strncpy((char *)node->key, trash.str, i); And the code ran without an issue. I believe that this is the issue that Bryan first saw, and that there isn¹t some malicious underlying memory corruption that¹s happening here. -Dave

