summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Cholasta <jcholast@redhat.com>2011-04-11 14:41:10 +0200
committerMartin Kosek <mkosek@redhat.com>2011-04-13 11:59:40 +0200
commitb92b8b85e8d7b5909d257ef1be3594d233563c04 (patch)
tree5dcbda7f744b88bc2645e4b38e8e04c5bee45aed
parent1b886a72488a82dd83376d9ecf6894a92d3fd515 (diff)
downloadfreeipa-b92b8b85e8d7b5909d257ef1be3594d233563c04.tar.gz
freeipa-b92b8b85e8d7b5909d257ef1be3594d233563c04.tar.xz
freeipa-b92b8b85e8d7b5909d257ef1be3594d233563c04.zip
Fix uninitialized variables.
-rwxr-xr-xmakeapi7
1 files changed, 7 insertions, 0 deletions
diff --git a/makeapi b/makeapi
index 1d418fe69..757200d57 100755
--- a/makeapi
+++ b/makeapi
@@ -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