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
crc32_iscsi_01.asm, line 408: mov rbx, qword [bufptmp]
When the buffer length is zero (and the buffer address is 64-bit aligned), the above line reads a qword at the buffer address, which is technically reading past the end of the buffer. In particular, calling the function with (NULL, 0, crc) results in a segfault.
The text was updated successfully, but these errors were encountered:
crc32_iscsi_01.asm, line 408: mov rbx, qword [bufptmp]
When the buffer length is zero (and the buffer address is 64-bit aligned), the above line reads a qword at the buffer address, which is technically reading past the end of the buffer. In particular, calling the function with (NULL, 0, crc) results in a segfault.
The text was updated successfully, but these errors were encountered: