From 2d754907b6e824088b74a156b0dc2017323a2013 Mon Sep 17 00:00:00 2001 From: Erwan Velu Date: Mon, 11 Jul 2011 22:10:34 +0200 Subject: [PATCH] hdt: Fixing array size Bootable flags shall be 6 char to let one NULL terminating char. Thx Gerth for reporting this. --- com32/hdt/hdt-dump-disks.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/com32/hdt/hdt-dump-disks.c b/com32/hdt/hdt-dump-disks.c index d851bf8..ef8cf22 100644 --- a/com32/hdt/hdt-dump-disks.c +++ b/com32/hdt/hdt-dump-disks.c @@ -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; -- 2.7.4