Verify list len before use it with IN (#3423)
This commit is contained in:
parent
b85927e488
commit
8ad92bb8a4
1 changed files with 5 additions and 2 deletions
|
@ -414,8 +414,11 @@ func RemoveOrgUser(orgID, userID int64) error {
|
|||
return err
|
||||
}
|
||||
}
|
||||
if _, err = sess.Where("user_id = ?", user.ID).In("repo_id", repoIDs).Delete(new(Access)); err != nil {
|
||||
return err
|
||||
|
||||
if len(repoIDs) > 0 {
|
||||
if _, err = sess.Where("user_id = ?", user.ID).In("repo_id", repoIDs).Delete(new(Access)); err != nil {
|
||||
return err
|
||||
}
|
||||
}
|
||||
|
||||
// Delete member in his/her teams.
|
||||
|
|
Reference in a new issue