Fix uninitialized variables.

This commit is contained in:
Jan Cholasta
2011-04-11 14:41:10 +02:00
committed by Martin Kosek
parent 811f631c09
commit 267f39dcea

View File

@@ -136,6 +136,13 @@ def validate_api():
rval = 0
expected_args = 0
expected_options = 0
expected_output = 0
found_args = []
found_options = []
found_output = []
# First run through the file and compare it to the API
existing_cmds = []
cmd = None