[sleuthkit-users] Bug: free used instead of tsk_fs_free
Brought to you by:
carrier
From: Lloyd <llo...@gm...> - 2017-02-24 06:08:28
|
Hi, In ntfs.c file there is a function named "ntfs_open". In that, a memory is allocated with "tsk_fs_malloc" , line no. 4829 if ((ntfs = (NTFS_INFO *) tsk_fs_malloc(sizeof(*ntfs))) == NULL) But it is freed at the end using "free" (5131) instead of "tsk_fs_free". My VS 2015 debugger breaks here. Can anybody please verify it? Thanks, Lloyd |