From: Bill Pemberton Date: Thu, 17 Jun 2010 17:10:57 +0000 (-0400) Subject: Staging: xgifb: increase VBIOS_VER_MAX_LENGTH to 5 X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=6e5db771e10fccde1e48bf665dc900372826bc38;p=deliverable%2Flinux.git Staging: xgifb: increase VBIOS_VER_MAX_LENGTH to 5 VBIOS_VER_MAX_LENGTH was set to 4, but the value "0.84" is strcpy'd into it. That value is 5 long including the trailing NULL. Signed-off-by: Bill Pemberton Cc: Arnaud Patard Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/xgifb/vgatypes.h b/drivers/staging/xgifb/vgatypes.h index 8702a7a78996..df839eeb5efd 100644 --- a/drivers/staging/xgifb/vgatypes.h +++ b/drivers/staging/xgifb/vgatypes.h @@ -5,7 +5,7 @@ #include #ifndef VBIOS_VER_MAX_LENGTH -#define VBIOS_VER_MAX_LENGTH 4 +#define VBIOS_VER_MAX_LENGTH 5 #endif #ifndef XGI_VB_CHIP_TYPE