Skip to content

Commit

Permalink
Fix some processing algorithm exception handling
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Jul 6, 2017
1 parent 1b2afea commit cd9328d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/processing/qgsprocessingalgrunnertask.cpp
Expand Up @@ -47,7 +47,7 @@ bool QgsProcessingAlgRunnerTask::run()
bool ok = false;
try
{
mResults = mAlgorithm->run( mParameters, mContext, mFeedback.get(), &ok );
mResults = mAlgorithm->run( mParameters, mContext, mFeedback, &ok );
}
catch ( QgsProcessingException & )
{
Expand Down

0 comments on commit cd9328d

Please sign in to comment.