$OpenBSD: patch-src_flash_mflash_c,v 1.3 2017/07/10 13:47:41 uaa Exp $

Fix bad bound.

Index: src/flash/mflash.c
--- src/flash/mflash.c.orig
+++ src/flash/mflash.c
@@ -1159,7 +1159,7 @@ static void mg_gen_ataid(mg_io_type_drv_info *pSegIdDr
 	memset(pSegIdDrvInfo->vendor_uniq_bytes, 0x00, 62);
 	/* CFA power mode 1 support in maximum 200mA */
 	pSegIdDrvInfo->cfa_pwr_mode                     = 0x0100;
-	memset(pSegIdDrvInfo->reserved7, 0x00, 190);
+	memset(pSegIdDrvInfo->reserved7, 0x00, 186);
 }
 
 static int mg_storage_config(void)
