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
src/trie.c:137:9: warning: Potential leak of memory pointed to by 'split'
free(node);
^~~~
src/trie.c:366:23: warning: Attempt to free released memory
void* const ret = realloc(*key, len + node->len);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/trie.c:383:23: warning: Attempt to free released memory
void* const ret = realloc(*key, len + 1);
^~~~~~~~~~~~~~~~~~~~~~
The text was updated successfully, but these errors were encountered:
We need to understand the following warnings:
The text was updated successfully, but these errors were encountered: