mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Fix stack corruption when sending multiple MMC/SD commands in Linux.
This commit is contained in:
@@ -268,9 +268,6 @@ namespace Aaru.Core.Devices.Dumping
|
||||
if(blocksToRead > _maximumReadable)
|
||||
blocksToRead = (ushort)_maximumReadable;
|
||||
|
||||
// TODO: This command execution is corrupting the stack
|
||||
supportsCmd23 = false;
|
||||
|
||||
if(supportsCmd23 && blocksToRead > 1)
|
||||
{
|
||||
sense = _dev.ReadWithBlockCount(out cmdBuf, out _, 0, blockSize, 1, byteAddressed, timeout,
|
||||
|
||||
Reference in New Issue
Block a user