mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 14:51:00 +07:00
[SCSI] gdth: fix overlapping snprintf users
Closes-bug: http://bugzilla.kernel.org/show_bug.cgi?id=13438 Closes-bug: http://bugzilla.kernel.org/show_bug.cgi?id=13437 Signed-off-by: Alan Cox <alan@linux.intel.com> Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
This commit is contained in:
parent
cf4e636385
commit
238ddbb98c
@ -152,6 +152,7 @@ static int gdth_get_info(char *buffer,char **start,off_t offset,int length,
|
||||
struct Scsi_Host *host, gdth_ha_str *ha)
|
||||
{
|
||||
int size = 0,len = 0;
|
||||
int hlen;
|
||||
off_t begin = 0,pos = 0;
|
||||
int id, i, j, k, sec, flag;
|
||||
int no_mdrv = 0, drv_no, is_mirr;
|
||||
@ -192,11 +193,11 @@ static int gdth_get_info(char *buffer,char **start,off_t offset,int length,
|
||||
if (reserve_list[0] == 0xff)
|
||||
strcpy(hrec, "--");
|
||||
else {
|
||||
sprintf(hrec, "%d", reserve_list[0]);
|
||||
hlen = sprintf(hrec, "%d", reserve_list[0]);
|
||||
for (i = 1; i < MAX_RES_ARGS; i++) {
|
||||
if (reserve_list[i] == 0xff)
|
||||
break;
|
||||
sprintf(hrec,"%s,%d", hrec, reserve_list[i]);
|
||||
hlen += snprintf(hrec + hlen , 161 - hlen, ",%d", reserve_list[i]);
|
||||
}
|
||||
}
|
||||
size = sprintf(buffer+len,
|
||||
|
Loading…
Reference in New Issue
Block a user