~ubuntu-branches/ubuntu/utopic/parted/utopic-proposed

« back to all changes in this revision

Viewing changes to libparted/fs/fat/bootsector.h

  • Committer: Package Import Robot
  • Author(s): Colin Watson
  • Date: 2014-04-14 11:56:10 UTC
  • Revision ID: package-import@ubuntu.com-20140414115610-uqo3ngjcok5nsi4w
Tags: 2.3-19ubuntu1
* Upload from Debian git repository to fix a release-critical bug.
* Fix crash when opening FAT file systems (LP: #1306704).

Show diffs side-by-side

added added

removed removed

Lines of Context:
117
117
        uint16_t        signature_3;    /* should be 0xaa55 */
118
118
};
119
119
 
120
 
int fat_boot_sector_read (FatBootSector** bs, const PedGeometry* geom);
 
120
int fat_boot_sector_read (FatBootSector** bsp, const PedGeometry* geom);
121
121
FatType fat_boot_sector_probe_type (const FatBootSector* bs,
122
122
                                    const PedGeometry* geom);
123
123
int fat_boot_sector_analyse (FatBootSector* bs, PedFileSystem* fs);
125
125
int fat_boot_sector_generate (FatBootSector* bs, const PedFileSystem* fs);
126
126
int fat_boot_sector_write (const FatBootSector* bs, PedFileSystem* fs);
127
127
 
128
 
int fat_info_sector_read (FatInfoSector* is, const PedFileSystem* fs);
 
128
int fat_info_sector_read (FatInfoSector** isp, const PedFileSystem* fs);
129
129
int fat_info_sector_generate (FatInfoSector* is, const PedFileSystem* fs);
130
130
int fat_info_sector_write (const FatInfoSector* is, PedFileSystem* fs);
131
131