• Tim Peters's avatar
    bucket_split(): Don't leak the keys if memory for values can't be found. · 601a8019
    Tim Peters authored
    PyMalloc(), PyRealloc():  Call malloc() and realloc() directly instead
    of PyMem_Malloc() and PyMem_Realloc().  If the latter are used, then
    memory must be freed via PyMem_Free(), but PyMem_Free() isn't called
    anywhere -- memory is released via raw system free().  It would probably
    be better to change all uses of free() instead, but that's A Project (well,
    compared to this ...).
    601a8019
BTreeModuleTemplate.c 14.8 KB