You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A zhash container appears to be able to store arbitrarily typed values (void*) indexed by a string key (char*). However, if autofree is set, there are a couple places in zhash.c that cast the value to a char* and then strdup it. This will surely cause problems if the value was not a char* to begin with.
Solution: Update documentation? Maybe don't strdup the value?