MMDB-Swift icon indicating copy to clipboard operation
MMDB-Swift copied to clipboard

memory leaking

Open zhouhesheng opened this issue 2 years ago • 0 comments

let status = MMDB_get_entry_data_list(&entry, &list) if status != MMDB_SUCCESS { return nil } you should free memory when status is success:

    defer {
        MMDB_free_entry_data_list(list)
    } 

zhouhesheng avatar Oct 09 '22 01:10 zhouhesheng