Fix memory leak upon failure of esp_vfs_fat_sdmmc_mount()

Closes https://github.com/espressif/esp-idf/issues/4165
This commit is contained in:
Roland Dobai 2019-10-08 13:17:34 +02:00
parent 4e27cbb89f
commit 8d4e1c0616

View file

@ -158,6 +158,8 @@ fail:
ff_diskio_unregister(pdrv);
free(s_card);
s_card = NULL;
free(s_base_path);
s_base_path = NULL;
return err;
}