Skip to content
Snippets Groups Projects
Commit 582b3b2b authored by Peter Kaiser's avatar Peter Kaiser
Browse files

HapticObserver: Don't crash on reception of empty matrices

parent 28016ae3
No related branches found
No related tags found
No related merge requests found
......@@ -39,7 +39,6 @@ void HapticObserver::onInitObserver()
offerConditionCheck("larger", new ConditionCheckLarger());
offerConditionCheck("equals", new ConditionCheckEquals());
offerConditionCheck("smaller", new ConditionCheckSmaller());
}
void HapticObserver::onConnectObserver()
......@@ -55,7 +54,14 @@ void HapticObserver::onExitObserver()
void HapticObserver::reportSensorValues(const std::string& device, const std::string& name, const armarx::MatrixFloatBasePtr& values, const armarx::TimestampBasePtr& timestamp, const Ice::Current&)
{
ScopedLock lock(dataMutex);
MatrixFloatPtr matrix = MatrixFloatPtr::dynamicCast(values);
if (matrix->cols == 0)
{
// Empty matrix received, silently ignore
return;
}
TimestampVariantPtr timestampPtr = TimestampVariantPtr::dynamicCast(timestamp);
Eigen::MatrixXf eigenMatrix = matrix->toEigen();
float max = eigenMatrix.maxCoeff();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment