fix memory leak in sd_erase in bsp/simulator

This commit is contained in:
prife 2013-01-22 23:57:10 +08:00
parent d7f8f375df
commit 821d0ac252
1 changed files with 1 additions and 0 deletions

View File

@ -203,6 +203,7 @@ int sd_erase(void)
{
rt_sdcard_write(device, index, buffer, SECTOR_SIZE);
}
rt_free(buffer);
return 0;
}
FINSH_FUNCTION_EXPORT(sd_erase, erase all block in SPI flash);