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)
commitd7af2a863017be1f5fd1b65a858ddc7e87d7b876
treebc3c91231ca30e27927cc3f2f31278ab9e98fe01
parentbd98e6ae7160d5a4fc013266183506068227dd79
fat: FAT filesystem premature release of info struct.

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