Skip to content

Commit

Permalink
BUG: ITKImportFijiMontage: Fixing incorrect DataPath that was causing…
Browse files Browse the repository at this point in the history
… a crash. (#833)

Signed-off-by: Joey Kleingers <[email protected]>
  • Loading branch information
joeykleingers authored Jan 29, 2024
1 parent 7060dca commit 7c434ae
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ class IOHandler
}
else
{
imageDataPath = DataPath({bound.ImageName, bound.ImageName, m_InputValues->cellAMName, m_InputValues->imageDataArrayName});
imageDataPath = DataPath({bound.ImageName, m_InputValues->cellAMName, m_InputValues->imageDataArrayName});
}

// Ensure that we are dealing with in-core memory ONLY
Expand Down

0 comments on commit 7c434ae

Please sign in to comment.