Skip to content
  • Charl Botha's avatar
    ERR: vtkImageMultipleInputFilter child classes should NOT check inData[i] · 163a4280
    Charl Botha authored
    directly in ThreadedExecute() for non-NULL value.  inData is only valid
    up to the NumberOfInputs - 1, if you check for inData[i] for an invalid
    i, you're getting some value past the end of the array!  Use
    this->GetInput(i) for your checks instead.  Once you've established that
    a certain i is valid, you can use inData[i].
    163a4280