Fix uninitialized variable bug introduced in 34b3751696
This commit is contained in:
parent
6d20b64ac4
commit
280d6efd2e
1 changed files with 1 additions and 1 deletions
|
@ -163,6 +163,7 @@ int exFAT_boot_sector(disk_t *disk, partition_t *partition, char **current_cmd)
|
|||
unsigned char *buffer_backup_bs;
|
||||
int rescan=1;
|
||||
const int size_bs=12 * disk->sector_size;
|
||||
const char *options;
|
||||
#ifdef HAVE_NCURSES
|
||||
const struct MenuItem menu_exFAT[]=
|
||||
{
|
||||
|
@ -179,7 +180,6 @@ int exFAT_boot_sector(disk_t *disk, partition_t *partition, char **current_cmd)
|
|||
buffer_backup_bs=(unsigned char*)MALLOC(size_bs);
|
||||
while(1)
|
||||
{
|
||||
const char *options;
|
||||
int command;
|
||||
screen_buffer_reset();
|
||||
if(rescan==1)
|
||||
|
|
Loading…
Reference in a new issue