Patch from Gal Rosen <galr@storwize.com>:

There are 16 characters of the port_name + 7 characters of ":" + "\0" of
sprintf = total 24 bytes.
wwn_str has only 16 bytes.



git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@681 d57e44dd-8a1f-0410-8b47-8ef2f437770f
This commit is contained in:
Vladislav Bolkhovitin
2009-02-26 20:02:43 +00:00
parent 8f6b4e5b99
commit 250929b448
+1 -1
View File
@@ -1308,7 +1308,7 @@ static char *q2t_find_name(scsi_qla_host_t *ha, int loop_id)
char *wwn_str;
fc_port_t *fcl;
wwn_str = kmalloc(2*WWN_SIZE, GFP_ATOMIC);
wwn_str = kmalloc(3*WWN_SIZE, GFP_ATOMIC);
if (wwn_str == NULL) {
TRACE(TRACE_OUT_OF_MEM, "%s", "Allocation of wwn_str failed");
goto out;