fat: FAT filesystem premature release of info struct.
authorMartin Vystrčil <martin.vystrcil@m-linux.cz>
Tue, 20 Aug 2019 20:18:30 +0000 (22:18 +0200)
committerTom Rini <trini@konsulko.com>
Mon, 26 Aug 2019 15:46:21 +0000 (11:46 -0400)
File was found on specified location. Info about file was read,
but then immediately destroyed using 'free' call. As a result
file size was set to 0, hence fat process didn't read any data.

Premature 'free' call removed. Resources are freed right before
function return. File is read correctly.

Signed-off-by: Martin Vystrcil <martin.vystrcil@m-linux.cz>
fs/fat/fat.c

index 06c8ed14bdab0ac948cf905e09a2821ec63bfdab..29cae8d3914761cdd965b3ec536b807510e39fa0 100644 (file)
@@ -1174,10 +1174,6 @@ int file_fat_read_at(const char *filename, loff_t pos, void *buffer,
        /* For saving default max clustersize memory allocated to malloc pool */
        dir_entry *dentptr = itr->dent;
 
-       free(itr);
-
-       itr = NULL;
-
        ret = get_contents(&fsdata, dentptr, pos, buffer, maxsize, actread);
 
 out_free_both: