securesauce / precli

Precaution CLI - command line static application security testing tool
https://precli.readthedocs.io/
Other
22 stars 3 forks source link

Fix for IndexError in an expression list assignment #408

Closed ericwb closed 6 months ago

ericwb commented 6 months ago

There are some cases where the left and right hand sides of the assignment don't have equal number of arguments. This change ensures the node children have identical sizes to avoid this condition.

A longer term solution might be to handle star arguments.

Fixes #407