[SCSI] libfc: fix mm leak in handling incoming request for target discovery

When handling incoming request, if the operation code carried by the
received frame is not RSCN, the frame should be freed as in the RSCN
case, or there is memory leakage.

Signed-off-by: Hillf Danton <dhillf@gmail.com>
Signed-off-by: Robert Love <robert.w.love@intel.com>
Signed-off-by: James Bottomley <jbottomley@parallels.com>
This commit is contained in:
Hillf Danton 2011-05-16 16:45:35 -07:00 коммит произвёл James Bottomley
Родитель bdf252183e
Коммит 83383dd11a
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -205,6 +205,7 @@ static void fc_disc_recv_req(struct fc_lport *lport, struct fc_frame *fp)
default: default:
FC_DISC_DBG(disc, "Received an unsupported request, " FC_DISC_DBG(disc, "Received an unsupported request, "
"the opcode is (%x)\n", op); "the opcode is (%x)\n", op);
fc_frame_free(fp);
break; break;
} }
} }