Bug fix: iso_file_get_old_image_lba() returned 0 in case of valid lba.

This commit is contained in:
Thomas Schmitt 2014-04-23 16:22:37 +02:00
parent 593844b0ed
commit dfd74d3d04
1 changed files with 1 additions and 1 deletions

View File

@ -1131,7 +1131,7 @@ int iso_file_get_old_image_lba(IsoFile *file, uint32_t *lba, int flag)
}
*lba = sections[0].block;
free(sections);
return 0;
return 1;
}