Skip to content
Snippets Groups Projects
Unverified Commit 7443f9e9 authored by nnsgmsone's avatar nnsgmsone Committed by GitHub
Browse files

Add missing error of group (#2823)

parent 11d9af0b
No related branches found
No related tags found
No related merge requests found
......@@ -174,7 +174,7 @@ func (ctr *Container) processWithGroup(ap *Argument, proc *process.Process) (boo
vector.Clean(ctr.aggVecs[j].vec, proc.Mp)
}
}
return false, nil
return false, err
}
ctr.aggVecs[i].vec = vec
ctr.aggVecs[i].needFree = true
......@@ -203,7 +203,7 @@ func (ctr *Container) processWithGroup(ap *Argument, proc *process.Process) (boo
vector.Clean(ctr.groupVecs[j].vec, proc.Mp)
}
}
return false, nil
return false, err
}
ctr.groupVecs[i].vec = vec
ctr.groupVecs[i].needFree = true
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment