You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a problem, but I think the real cause of the problem comes from the allocation.
In the current code, the allocation and free of iser_pdu->iscsi_pdu.indata.data mismatch.
I created a pull request: #431
in iser.c, line 333:
if (pdu->indata.size <= iscsi->smalloc_size) {
it should be if (pdu->indata.size >= iscsi->smalloc_size) {
The text was updated successfully, but these errors were encountered: