hdt: Fixing array size
authorErwan Velu <erwan.velu@free.fr>
Mon, 11 Jul 2011 20:10:34 +0000 (22:10 +0200)
committerErwan Velu <erwan.velu@free.fr>
Mon, 11 Jul 2011 20:10:34 +0000 (22:10 +0200)
Bootable flags shall be 6 char to let one NULL terminating char.
Thx Gerth for reporting this.

com32/hdt/hdt-dump-disks.c

index d851bf8..ef8cf22 100644 (file)
@@ -42,7 +42,7 @@ static void show_partition_information(struct driveinfo *drive_info,
     char ostype[64]={0};
     char *parttype;
     unsigned int start, end;
-    char bootable[5] = {0};
+    char bootable[6] = {0};
 
     int i = nb_partitions_seen;
     start = partition_offset;