diff -urN parted1.6-1.5+1.6.0-pre1.orig/ChangeLog parted1.6-1.5+1.6.0-pre1/ChangeLog --- parted1.6-1.5+1.6.0-pre1.orig/ChangeLog Thu Jan 31 00:16:25 2002 +++ parted1.6-1.5+1.6.0-pre1/ChangeLog Fri Feb 1 18:34:27 2002 @@ -8,6 +8,10 @@ 1.5.x ----------------------------------------------------------------------------- +2002-02-01 Timshel Knoll +* libparted/disk_mips.c (_handle_no_volume_header): fixes to "variable might + be used uninitialised in this function" compile warnings + 2002-01-23 Andrew Clausen * libparted/filesys.c (ped_file_system_open): now calls fs_type->ops->open on the probed geometry returned by fs_type->ops->probe. If this doesn't diff -urN parted1.6-1.5+1.6.0-pre1.orig/libparted/disk_mips.c parted1.6-1.5+1.6.0-pre1/libparted/disk_mips.c --- parted1.6-1.5+1.6.0-pre1.orig/libparted/disk_mips.c Thu Jan 31 00:16:26 2002 +++ parted1.6-1.5+1.6.0-pre1/libparted/disk_mips.c Fri Feb 1 18:29:19 2002 @@ -190,6 +190,7 @@ disk->dev->path)) { case PED_EXCEPTION_UNHANDLED: case PED_EXCEPTION_FIX: + default: part = ped_partition_new ( disk, PED_PARTITION_EXTENDED, NULL, @@ -213,7 +214,7 @@ break; case PED_EXCEPTION_CANCEL: - goto error_destroy_constraint_exact; + goto error; } return ret;