mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-06 10:40:36 -07:00
mysql_user: reinitialize the privs list in privileges_unpack()
In some scenarios, `privileges_unpack()` called `privs.append()` inside a loop without first emptying or reinitializing the `privs` list from the prior iteration. This could result in an invalid `GRANT` statement, which incorrectly included privileges from a previously-built `GRANT` statement. Reinitialize `privs` on each pass of the loop to prevent this from occurring.
This commit is contained in:
parent
ba791bf983
commit
8ceec702ad
1 changed files with 1 additions and 1 deletions
|
@ -882,8 +882,8 @@ def privileges_unpack(priv, mode):
|
|||
else:
|
||||
quote = '`'
|
||||
output = {}
|
||||
privs = []
|
||||
for item in priv.strip().split('/'):
|
||||
privs = []
|
||||
pieces = item.strip().rsplit(':', 1)
|
||||
dbpriv = pieces[0].rsplit(".", 1)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue