From 267f39dceacb614f29127f3fea804cf43d1f8e88 Mon Sep 17 00:00:00 2001 From: Jan Cholasta Date: Mon, 11 Apr 2011 14:41:10 +0200 Subject: Fix uninitialized variables. --- makeapi | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'makeapi') 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 -- cgit